13 lines
201 B
CMake
13 lines
201 B
CMake
|
project(utf8cpp)
|
||
|
|
||
|
# Silence Warnings
|
||
|
add_compile_options(-w)
|
||
|
|
||
|
## stb_image
|
||
|
|
||
|
# Build
|
||
|
add_subdirectory(src EXCLUDE_FROM_ALL)
|
||
|
|
||
|
# License
|
||
|
install(FILES src/LICENSE DESTINATION "${MCPI_LEGAL_DIR}/utf8cpp")
|