diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-10 12:07:59 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-30 16:01:43 +0200 |
commit | 37cf266b578864096bb7160c4f14fa8ac61fc38b (patch) | |
tree | 66cc6427489d7e83a73b09b9045913b571cce76c /platform/ios | |
parent | e7dd6f11ed1ed4d72186d3a90d5f4ef42e79c4d0 (diff) | |
download | redot-engine-37cf266b578864096bb7160c4f14fa8ac61fc38b.tar.gz |
SCons: Process platform-specific flags earlier
Some of the logic in SCons depends on flags that get overridden in the
platform-specific `detect.py`, so it needs to be processed first.
For example the Android/iOS/Web platforms override the default `target`
to `template_debug`, but this was processed too late so e.g. the logic
that sets `env.editor_build` would set it to true due to the default
`target` value in the environment being `editor`.
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/detect.py b/platform/ios/detect.py index 35e1b9cd6d..53b367a0a7 100644 --- a/platform/ios/detect.py +++ b/platform/ios/detect.py @@ -48,7 +48,7 @@ def get_doc_path(): def get_flags(): return { - "arch": "arm64", # Default for convenience. + "arch": "arm64", "target": "template_debug", "use_volk": False, "supported": ["mono"], |