From 5e2355dde2ebf4a0058c50812a33c90b348dce2e Mon Sep 17 00:00:00 2001 From: Andrey Filipenkov Date: Sun, 17 Aug 2025 11:25:57 +0300 Subject: [PATCH] [cmake][launcher] innoextract: disable libiconv on Android it finds it in the toolchain but that one is usable only since API level 28 --- launcher/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/launcher/CMakeLists.txt b/launcher/CMakeLists.txt index b8a5c7c03..bf01c43bd 100644 --- a/launcher/CMakeLists.txt +++ b/launcher/CMakeLists.txt @@ -1,4 +1,6 @@ if(ENABLE_INNOEXTRACT) + # libiconv not required for our use case + set(WITH_CONV "builtin" CACHE STRING "" FORCE) add_subdirectory("lib/innoextract") endif()