This commit is contained in:
Thomas Nagy 2016-05-02 23:31:31 +02:00
parent 4c05587684
commit da389364c5
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
bld.shlib(
source = 'test_shlib.c',
target = 'my_shared_lib',
name = 'xyz',
vnum = '1.2.3',
defs = 'foo.def')
@ -11,7 +12,7 @@ t = bld.program(
#features = 'my_precious',
source = 'main.c',
target = 'test_shared_link',
use = 'my_shared_lib',
use = 'xyz',
# 1. settings flags directly
#linkflags = ['-L/disk/comp/waf/demos/c/build/shlib', '-lmy_shared_lib']
)