aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/utf8proc/CMakeLists.txt
blob: 402b3ccb6b80019e68c68e77f738a09c3a032184 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
add_library(contrib-libs-utf8proc)
target_compile_options(contrib-libs-utf8proc PUBLIC
  -DUTF8PROC_STATIC
)
target_compile_options(contrib-libs-utf8proc PRIVATE
  -std=c99
)
target_link_libraries(contrib-libs-utf8proc PUBLIC
  contrib-libs-cxxsupp
)
target_sources(contrib-libs-utf8proc PRIVATE
  ${CMAKE_SOURCE_DIR}/contrib/libs/utf8proc/utf8proc.c
)