wscript 353 B

12345678910111213
  1. def build(bld):
  2. bld.objects(source=bld.get_sub_files(max_depth=1),
  3. target="common",
  4. includes = ['.','..'],
  5. )
  6. bld.objects(source=bld.get_sub_files(max_depth=1),
  7. target="common_sh",
  8. cxxflags=bld.env.CXXFLAGS_cxxshlib,
  9. includes = ['.','..'],
  10. )