2018-11-20 09:54:15 +00:00
|
|
|
#!/usr/bin/env python
|
2024-06-11 20:19:07 +00:00
|
|
|
from misc.utility.scons_hints import *
|
2018-11-20 09:54:15 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
2018-11-20 09:54:15 +00:00
|
|
|
|
|
|
|
env_webrtc = env_modules.Clone()
|
|
|
|
|
2022-08-28 18:27:45 +00:00
|
|
|
if env["platform"] == "web":
|
2020-10-23 16:33:20 +00:00
|
|
|
# Our JavaScript/C++ interface.
|
|
|
|
env.AddJSLibraries(["library_godot_webrtc.js"])
|
|
|
|
|
2018-11-20 09:54:15 +00:00
|
|
|
env_webrtc.add_source_files(env.modules_sources, "*.cpp")
|