diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-06-05 21:55:24 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-06-17 19:46:54 +0200 |
commit | 61299ca4b7390b5391d9ee6b6a82e2c30271dd3a (patch) | |
tree | 0325bbc311e75089d9ad8c403bb81a8a6b225a5d /tools/common.py | |
parent | df643250f5e35d5ecbbd6dafab940a4e7e4d2f25 (diff) | |
download | fork-godot-webrtc-native-61299ca4b7390b5391d9ee6b6a82e2c30271dd3a.tar.gz fork-godot-webrtc-native-61299ca4b7390b5391d9ee6b6a82e2c30271dd3a.tar.bz2 fork-godot-webrtc-native-61299ca4b7390b5391d9ee6b6a82e2c30271dd3a.zip |
[SCons] Refactor build system.
Update ssl tool (now renamed openssl).
Move universal library "lipo" action to openssl tool, and add universal
builds support to cmake tool.
Add support for MSVC builds (requires nasm and perl in PATH, tested with
Strawberry Perl, VS 2019 and VS 2022).
Add support for building "macos" via OSXCross.
Diffstat (limited to 'tools/common.py')
-rw-r--r-- | tools/common.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/common.py b/tools/common.py deleted file mode 100644 index 4bd5ada..0000000 --- a/tools/common.py +++ /dev/null @@ -1,9 +0,0 @@ -def exists(env): - return True - - -def generate(env): - env["DEPS_SOURCE"] = env.Dir("#thirdparty").abspath - env["DEPS_BUILD"] = env.Dir("#bin/thirdparty").abspath + "/{}.{}.dir".format( - env["suffix"][1:], "RelWithDebInfo" if env["debug_symbols"] else "Release" - ) |