2018-06-26 20:26:51 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
Import('env')
|
2018-09-28 13:29:52 +02:00
|
|
|
Import('env_gdnative')
|
2018-06-26 20:26:51 +02:00
|
|
|
|
2018-11-20 10:58:56 +01:00
|
|
|
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')
|
2018-06-26 20:26:51 +02:00
|
|
|
|