From 61299ca4b7390b5391d9ee6b6a82e2c30271dd3a Mon Sep 17 00:00:00 2001 From: Fabio Alessandrelli Date: Mon, 5 Jun 2023 21:55:24 +0200 Subject: [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. --- tools/common.py | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 tools/common.py (limited to 'tools/common.py') 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" - ) -- cgit v1.2.3