diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-12-13 10:31:32 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-12-13 10:31:32 +0100 |
commit | 2966db7d7691ea4a460c02b14a92f8a55be45330 (patch) | |
tree | 15ea54e14c72b6fdb12b806aa7875b28999a53ce /SConstruct | |
parent | 481d04669fa0d938a484213f92b37082f590034c (diff) | |
parent | 18152ac3a1d00d81d758425f2b67d37b60b56ab3 (diff) | |
download | redot-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-- | SConstruct | 1 |
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)) |