From da389364c5e68e4587e271ae5fcd7cf5331ea55a Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Mon, 2 May 2016 23:31:31 +0200 Subject: [PATCH] docs --- demos/c/shlib/wscript_build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/demos/c/shlib/wscript_build b/demos/c/shlib/wscript_build index c3cbc095..e4b8f7da 100644 --- a/demos/c/shlib/wscript_build +++ b/demos/c/shlib/wscript_build @@ -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'] )