SCsub 380 B

1234567891011121314151617
  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.add_source_files(env.drivers_sources, thirdparty_sources)
  12. Export('env')