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/android.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/android.py')
-rw-r--r-- | tools/android.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/android.py b/tools/android.py index 0c25354..8454d47 100644 --- a/tools/android.py +++ b/tools/android.py @@ -1,6 +1,7 @@ import os import sys import my_spawn +import common_compiler_flags from SCons.Script import ARGUMENTS @@ -118,3 +119,5 @@ def generate(env): env.Append(LINKFLAGS=["--target=" + arch_info["target"] + env["android_api_level"], "-march=" + arch_info["march"]]) env.Append(CPPDEFINES=["ANDROID_ENABLED", "UNIX_ENABLED"]) + + common_compiler_flags.generate(env) |