mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
14 lines
381 B
CMake
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 )
|