From: Valentin Konovalov Date: Thu, 25 Jan 2024 17:05:51 +0000 (-0500) Subject: android : use release cmake build type by default (#5123) X-Git-Tag: upstream/0.0.4488~2520 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=256d1bb0ddce6a0a21f5a7503019bdd5c1933cba;p=pkg%2Fggml%2Fsources%2Fllama.cpp android : use release cmake build type by default (#5123) --- 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() }