blob: f3b67496c54f707dccc85814847c8fc75f6e46d1 (
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
26
27
28
|
cmake_minimum_required(VERSION 3.5) # for Boost::* imported targets
project(winapi_common CXX)
enable_testing()
include(cmake/common.cmake)
find_package(Boost REQUIRED)
if(NOT TARGET SafeInt)
add_subdirectory(3rdparty/microsoft/SafeInt EXCLUDE_FROM_ALL)
endif()
add_subdirectory(3rdparty/winapi/utf8 EXCLUDE_FROM_ALL)
file(GLOB_RECURSE winapi_common_include "include/*.hpp")
file(GLOB winapi_common_src "src/*.cpp")
add_library(winapi_common ${winapi_common_include} ${winapi_common_src})
target_include_directories(winapi_common PUBLIC include)
target_link_libraries(winapi_common PRIVATE winapi_utf8)
target_link_libraries(winapi_common PUBLIC SafeInt)
target_link_libraries(winapi_common PUBLIC Boost::disable_autolinking 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)
|