SCsub 440 B

123456789101112131415161718
  1. #!/usr/bin/env python
  2. Import('env')
  3. env.add_source_files(env.drivers_sources, "*.cpp")
  4. # Thirdparty dependencies
  5. thirdparty_dir = "#thirdparty/b2d_convexdecomp/"
  6. thirdparty_sources = [
  7. "b2Polygon.cpp",
  8. "b2Triangle.cpp",
  9. ]
  10. thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
  11. env_thirdparty = env.Clone()
  12. env_thirdparty.disable_warnings()
  13. env_thirdparty.add_source_files(env.drivers_sources, thirdparty_sources)