2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-12-01 14:31:55 +01:00
waf/playground/lint/stlib/wscript_build
Thomas Nagy 9f7330b745 docs
2012-04-17 21:53:01 +02:00

13 lines
211 B
Python

#! /usr/bin/env python
bld.stlib(
source = 'test_staticlib.c',
target = 'my_static_lib')
bld.program(
source = 'main.c',
target = 'test_static_link',
includes = '.',
use = 'my_static_lib')