SCsub 326 B

12345678910111213
  1. #!/usr/bin/env python
  2. from misc.utility.scons_hints import *
  3. Import("env")
  4. Import("env_modules")
  5. if env["platform"] == "web":
  6. env.AddJSLibraries(["native/library_godot_webxr.js"])
  7. env.AddJSExterns(["native/webxr.externs.js"])
  8. env_webxr = env_modules.Clone()
  9. env_webxr.add_source_files(env.modules_sources, "*.cpp")