diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-02-14 15:32:27 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-02-16 23:08:06 +0100 |
commit | 16df4bff300b1e3ec6256936802ece4a158a28be (patch) | |
tree | 21093e52e49fd3f70154a3e7523933c53953f17b /tools/web.py | |
parent | 620104e700706091c33efa033bf96c687e2394ee (diff) | |
download | redot-cpp-16df4bff300b1e3ec6256936802ece4a158a28be.tar.gz |
[SCons] Split `targets.py`, apply flags from tools
Split `targets` tool logic, moving all the compiler-specific flags to a
new `common_compiler_flags.py` file, and everything else (CPPDEFINES,
optimize option logic, dev build logic, etc) to the `godotcpp` tool.
The default tools now apply the common compiler flags by importing the
file and explicitly calling `configure`.
Diffstat (limited to 'tools/web.py')
-rw-r--r-- | tools/web.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/web.py b/tools/web.py index a4620c3..c7440bc 100644 --- a/tools/web.py +++ b/tools/web.py @@ -1,4 +1,5 @@ import os +import common_compiler_flags from SCons.Util import WhereIs @@ -42,3 +43,5 @@ def generate(env): env.Append(LINKFLAGS=["-s", "SIDE_MODULE=1"]) env.Append(CPPDEFINES=["WEB_ENABLED", "UNIX_ENABLED"]) + + common_compiler_flags.generate(env) |