Преглед изворни кода

[cmake][launcher] innoextract: disable libiconv

on Android it finds it in the toolchain but that one is usable only since API level 28
Andrey Filipenkov пре 2 месеци
родитељ
комит
5e2355dde2
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2 0
      launcher/CMakeLists.txt

+ 2 - 0
launcher/CMakeLists.txt

@@ -1,4 +1,6 @@
 if(ENABLE_INNOEXTRACT)
 if(ENABLE_INNOEXTRACT)
+	# libiconv not required for our use case
+	set(WITH_CONV "builtin" CACHE STRING "" FORCE)
 	add_subdirectory("lib/innoextract")
 	add_subdirectory("lib/innoextract")
 endif()
 endif()