SCsub 768 B

123456789101112131415161718192021222324252627282930313233
  1. #!/usr/bin/env python
  2. Import("env")
  3. Import("env_modules")
  4. env_cvtt = env_modules.Clone()
  5. # Thirdparty source files
  6. thirdparty_obj = []
  7. thirdparty_dir = "#thirdparty/cvtt/"
  8. thirdparty_sources = ["ConvectionKernels.cpp"]
  9. thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
  10. env_cvtt.Prepend(CPPPATH=[thirdparty_dir])
  11. env_thirdparty = env_cvtt.Clone()
  12. env_thirdparty.disable_warnings()
  13. env_thirdparty.add_source_files(thirdparty_obj, thirdparty_sources)
  14. env.modules_sources += thirdparty_obj
  15. # Godot source files
  16. module_obj = []
  17. env_cvtt.add_source_files(module_obj, "*.cpp")
  18. env.modules_sources += module_obj
  19. # Needed to force rebuilding the module files when the thirdparty library is updated.
  20. env.Depends(module_obj, thirdparty_obj)