1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00
SqMod/vendor/UTF8/CMakeLists.txt
Sandu Liviu Catalin 4a8a7172d4 Add UTF8 library.
2021-09-19 14:23:47 +03:00

14 lines
381 B
CMake

# Create the UTF8Lib library
add_library(UTF8Lib STATIC
utf8.h
utf8.c
)
# Set speciffic options
target_compile_options(UTF8Lib PRIVATE -fvisibility=hidden)
# Includes
target_include_directories(UTF8Lib PUBLIC ${CMAKE_CURRENT_LIST_DIR})
# Private library defines
#target_compile_definitions(UTF8Lib PRIVATE )
# Public library defines
# target_compile_definitions(UTF8Lib PUBLIC )