summaryrefslogtreecommitdiff
path: root/src/share/utf8/CMakeLists.txt
blob: 2e2b3c62499a332edc28d172ba6b8d85062eced1 (plain)
1
2
3
4
5
6
7
8
9
set(CMAKE_REQUIRED_LIBRARIES iconv)
check_symbol_exists(iconv "iconv.h" HAVE_ICONV_LIB)

add_library(utf8 STATIC
    charset.c
    iconvert.c
    utf8.c)

target_link_libraries(utf8 PUBLIC grabbag $<$<BOOL:${HAVE_ICONV_LIB}>:iconv>)