summaryrefslogtreecommitdiffstats
path: root/tools/android.py
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2024-02-14 15:32:27 +0100
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2024-02-16 23:08:06 +0100
commit16df4bff300b1e3ec6256936802ece4a158a28be (patch)
tree21093e52e49fd3f70154a3e7523933c53953f17b /tools/android.py
parent620104e700706091c33efa033bf96c687e2394ee (diff)
downloadredot-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.py3
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)