diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c9a36d6..5a4d85b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.0) +cmake_minimum_required (VERSION 3.0...3.27) project (termo VERSION 0.1.0 LANGUAGES C) if ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUCC) @@ -61,6 +61,8 @@ else () endif () # -liconv may or may not be a part of libc +find_path (iconv_INCLUDE_DIRS iconv.h) +include_directories (${iconv_INCLUDE_DIRS}) find_library (iconv_LIBRARIES iconv) if (iconv_LIBRARIES) list (APPEND lib_libraries ${iconv_LIBRARIES}) |