wscript_build 306 B

123456789101112131415
  1. #! /usr/bin/env python
  2. bld(
  3. features = 'c cshlib',
  4. source = 'test_shlib.c',
  5. vnum = '1.2.3',
  6. defs = 'foo.def',
  7. target = 'my_shared_lib')
  8. bld(
  9. features = 'c cprogram',
  10. source = 'main.c',
  11. target = 'test_shared_link',
  12. use = 'my_shared_lib')