2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-25 19:30:04 +01:00
waf/playground/c/stlib/wscript_build
2011-09-10 11:13:51 +02:00

14 lines
258 B
Python

#! /usr/bin/env python
bld(
features = 'c cstlib',
source = 'test_staticlib.c',
target = 'my_static_lib')
bld(
features = 'c cprogram',
source = 'main.c',
target = 'test_static_link',
use = 'my_static_lib')