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