Optimize native CLI release binary

This commit is contained in:
Sergey Chernov 2026-04-09 22:30:43 +03:00
parent 88ce04102a
commit a1ea09440d

View File

@ -56,8 +56,8 @@ kotlin {
executable()
all {
if (buildType == org.jetbrains.kotlin.gradle.plugin.mpp.NativeBuildType.RELEASE) {
debuggable = true
optimized = false
debuggable = false
optimized = true
}
}
}