blob: 0244ce4f9e416d3972a5d4fdb17626d0eb30b6f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
cmake_minimum_required(VERSION 3.5) # for Boost::* imported targets
project(winapi_common CXX)
include(cmake/common.cmake)
file(GLOB winapi_common_cpp "src/*.cpp")
file(GLOB_RECURSE winapi_common_hpp "include/*.hpp")
add_library(winapi_common ${winapi_common_cpp} ${winapi_common_hpp})
target_include_directories(winapi_common PUBLIC include/)
add_subdirectory(3rdparty/winapi/utf8 EXCLUDE_FROM_ALL)
target_link_libraries(winapi_common PRIVATE winapi_utf8)
find_package(Boost REQUIRED)
target_link_libraries(winapi_common PUBLIC Boost::boost)
install(TARGETS winapi_common ARCHIVE DESTINATION lib)
install(DIRECTORY include/winapi DESTINATION include)
if(WINAPI_COMMON_TESTS)
add_subdirectory(test)
endif()
install(FILES LICENSE.txt DESTINATION share)
|