summaryrefslogtreecommitdiff
path: root/platform/iphone
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2021-10-14 12:01:22 +0200
committerRémi Verschelde <rverschelde@gmail.com>2021-10-14 12:01:28 +0200
commite2dfb656f4508643acf38014dd8461782505ba12 (patch)
tree80c1bf84a660d1c6dd2b18b956758c7df0428c0e /platform/iphone
parent0eed8d8386850f887c024730816e8044ad742a2b (diff)
SCons: Add `DEV_ENABLED` defines for `target=debug` builds
This will allow adding developer checks which will be fully compiled out in user builds, unlike `DEBUG_ENABLED` which is included in debug tempates and the editor builds. This define is not used yet, but we'll soon add code that uses it, and change some existing `DEBUG_ENABLED` checks to be performed only in dev builds. Related to godotengine/godot-proposals#3371.
Diffstat (limited to 'platform/iphone')
-rw-r--r--platform/iphone/detect.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py
index 05e24c5003..3c6453ff9b 100644
--- a/platform/iphone/detect.py
+++ b/platform/iphone/detect.py
@@ -59,6 +59,7 @@ def configure(env):
elif env["target"] == "debug":
env.Append(CCFLAGS=["-gdwarf-2", "-O0"])
env.Append(CPPDEFINES=["_DEBUG", ("DEBUG", 1), "DEBUG_ENABLED"])
+ env.Append(CPPDEFINES=["DEV_ENABLED"])
if env["use_lto"]:
env.Append(CCFLAGS=["-flto"])