vcpkg/ports/libunibreak/CMakeLists.txt
2017-09-02 17:09:07 -07:00

36 lines
569 B
CMake

cmake_minimum_required(VERSION 3.8.0)
project(libunibreak)
set(libunibreak_srcs
src/linebreakdata.c
src/linebreakdef.c
src/wordbreak.c
src/graphemebreak.c
src/unibreakbase.c
src/unibreakdef.c
)
include_directories(src)
add_library(libunibreak ${libunibreak_srcs})
install(
TARGETS libunibreak
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
if(NOT DISABLE_INSTALL_HEADERS)
install(
FILES
src/linebreak.h
src/linebreakdef.h
src/wordbreak.h
src/wordbreakdef.h
DESTINATION include
)
endif()