summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Konovalov <valle.ketsujin@gmail.com>2024-01-25 12:05:51 -0500
committerGitHub <noreply@github.com>2024-01-25 19:05:51 +0200
commit256d1bb0ddce6a0a21f5a7503019bdd5c1933cba (patch)
tree601a5a08ce6821251f47cea85b683867592f8378
parentfaa3526a1eba458120987ed8269e5616385a76f4 (diff)
android : use release cmake build type by default (#5123)
-rw-r--r--examples/llama.android/app/build.gradle.kts1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/llama.android/app/build.gradle.kts b/examples/llama.android/app/build.gradle.kts
index 7815a802..aadbe22c 100644
--- a/examples/llama.android/app/build.gradle.kts
+++ b/examples/llama.android/app/build.gradle.kts
@@ -30,6 +30,7 @@ android {
}
externalNativeBuild {
cmake {
+ arguments += "-DCMAKE_BUILD_TYPE=Release"
cppFlags += listOf()
arguments += listOf()
}