SCsub 269 B

12345678910111213
  1. #!/usr/bin/env python
  2. Import("env")
  3. Import("env_gdnative")
  4. env_net = env_gdnative.Clone()
  5. has_webrtc = env_net["module_webrtc_enabled"]
  6. if has_webrtc:
  7. env_net.Append(CPPDEFINES=["WEBRTC_GDNATIVE_ENABLED"])
  8. env_net.add_source_files(env.modules_sources, "*.cpp")