SCsub 413 B

123456789101112131415161718
  1. #!/usr/bin/env python
  2. from misc.utility.scons_hints import *
  3. Import("env")
  4. # Thirdparty source files
  5. thirdparty_dir = "#thirdparty/spirv-reflect/"
  6. thirdparty_sources = [
  7. "spirv_reflect.c",
  8. ]
  9. thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
  10. env_thirdparty = env.Clone()
  11. env_thirdparty.disable_warnings()
  12. env_thirdparty.add_source_files(env.servers_sources, thirdparty_sources)