SCsub 374 B

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