From 73a1973e2f85f7788e18d03064c2d7811e4f29e5 Mon Sep 17 00:00:00 2001 From: rainy liu Date: Sun, 13 Oct 2024 20:41:55 +0800 Subject: [PATCH] fix Iconv for UNIX --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 68f7cec..f526ecc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,7 +38,7 @@ endif() include(cmake/download_setup_opencv.cmake) -if(UNIX) +if(UNIX AND NOT ANDROID) find_package(Iconv REQUIRED) endif()