summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-12-09 14:45:31 +0100
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-12-10 17:13:59 +0100
commitdfaad6f5baa01c6c0975237963e35edcfa37ec08 (patch)
tree393ac5d8e204c6d87337f0f9663b2db1db2e4a08 /SConstruct
parent35bdd5efa71ba32a6c1cdfbabfa4b8dc71760aac (diff)
downloadfork-godot-webrtc-native-dfaad6f5baa01c6c0975237963e35edcfa37ec08.tar.gz
fork-godot-webrtc-native-dfaad6f5baa01c6c0975237963e35edcfa37ec08.tar.bz2
fork-godot-webrtc-native-dfaad6f5baa01c6c0975237963e35edcfa37ec08.zip
Bump godot-cpp to beta8, libdatachannel to v0.18.0
libdatachannel and libjuice are now released under MPL 2.0. Dependencies has been refactored under a `thirdparty` folder similar to what we have in Godot, with a dedicated `thirdparty/README.md` containing details information on dependencies upstreams, versions, and licenses.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 755d650..e804557 100644
--- a/SConstruct
+++ b/SConstruct
@@ -101,7 +101,6 @@ else:
result_path = os.path.join("bin", "extension", "webrtc")
# Dependencies
-deps_source_dir = "deps"
env.Append(BUILDERS={
"BuildOpenSSL": env.Builder(action=builders.ssl_action, emitter=builders.ssl_emitter),
"BuildLibDataChannel": env.Builder(action=builders.rtc_action, emitter=builders.rtc_emitter),
@@ -126,6 +125,7 @@ env.Prepend(LIBS=[builders.get_rtc_libs(env)])
# Our includes and sources
env.Append(CPPPATH=["src/"])
+env.Append(CPPDEFINES=["RTC_STATIC"])
sources = []
sources.append(
[