summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-12-13 10:31:32 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-12-13 10:31:32 +0100
commit2966db7d7691ea4a460c02b14a92f8a55be45330 (patch)
tree15ea54e14c72b6fdb12b806aa7875b28999a53ce /SConstruct
parent481d04669fa0d938a484213f92b37082f590034c (diff)
parent18152ac3a1d00d81d758425f2b67d37b60b56ab3 (diff)
downloadredot-engine-2966db7d7691ea4a460c02b14a92f8a55be45330.tar.gz
Merge pull request #84440 from Calinou/scons-android-add-generate-apk-option
Add `generate_apk=yes` to generate an APK after building
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct1
1 files changed, 1 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 9dc1caa0b6..7ae90272f3 100644
--- a/SConstruct
+++ b/SConstruct
@@ -182,6 +182,7 @@ opts.Add(BoolVariable("debug_symbols", "Build with debugging symbols", False))
opts.Add(BoolVariable("separate_debug_symbols", "Extract debugging symbols to a separate file", False))
opts.Add(EnumVariable("lto", "Link-time optimization (production builds)", "none", ("none", "auto", "thin", "full")))
opts.Add(BoolVariable("production", "Set defaults to build Godot for use in production", False))
+opts.Add(BoolVariable("generate_apk", "Generate an APK/AAB after building Android library by calling Gradle", False))
# Components
opts.Add(BoolVariable("deprecated", "Enable compatibility code for deprecated and removed features", True))