summaryrefslogtreecommitdiff
path: root/builders.py
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-09-11 14:16:30 +0200
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-09-11 15:34:08 +0200
commit6e52fce98660dc9eaa832d682bf38e2ea742e5b6 (patch)
treed3b59859a2dec39c1a43d87b6836e78f127738df /builders.py
parenta93af67d756e65161b81683c32fa66efd6f47ec6 (diff)
downloadfork-godot-webrtc-native-6e52fce98660dc9eaa832d682bf38e2ea742e5b6.tar.gz
fork-godot-webrtc-native-6e52fce98660dc9eaa832d682bf38e2ea742e5b6.tar.bz2
fork-godot-webrtc-native-6e52fce98660dc9eaa832d682bf38e2ea742e5b6.zip
Update sources to alpha16
Diffstat (limited to 'builders.py')
-rw-r--r--builders.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/builders.py b/builders.py
index 2c682bc..8f85cd3 100644
--- a/builders.py
+++ b/builders.py
@@ -88,7 +88,7 @@ def ssl_action(target, source, env):
ssl_env.PrependENVPath("PATH", os.path.dirname(env["CC"]))
ssl_env["ENV"]["ANDROID_NDK_ROOT"] = os.environ.get("ANDROID_NDK_ROOT", "")
- elif env["platform"] == "osx":
+ elif env["platform"] == "macos":
if env["arch"] == "x86_64":
args.extend(["darwin64-x86_64"])
elif env["arch"] == "arm64":
@@ -191,7 +191,7 @@ def rtc_action(target, source, env):
"-DCMAKE_C_FLAGS=-m64",
"-DCMAKE_CXX_FLAGS=-m64"
])
- elif env["platform"] == "osx":
+ elif env["platform"] == "macos":
if env["macos_deployment_target"] != "default":
args.extend(["-DCMAKE_OSX_DEPLOYMENT_TARGET=%s" % env["macos_deployment_target"]])
if env["arch"] == "x86_64":