From 0e439fb2d229808a8d879bfefcf371099b522479 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 14 Oct 2020 01:57:40 +0300 Subject: add Handle class It's derived from various projects of mine. --- CMakeLists.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..ef5747e --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,19 @@ +cmake_minimum_required(VERSION 3.5) # for Boost::* imported targets + +project(winapi_common CXX) + +include(cmake/common.cmake) + +find_package(Boost REQUIRED) + +add_library(winapi_common INTERFACE) +target_include_directories(winapi_common INTERFACE include/) +target_link_libraries(winapi_common INTERFACE Boost::disable_autolinking Boost::headers) + +install(DIRECTORY include/winapi DESTINATION include) + +if(WINAPI_COMMON_TESTS) + add_subdirectory(test) +endif() + +install(FILES LICENSE.txt DESTINATION share) -- cgit v1.2.3