-
Notifications
You must be signed in to change notification settings - Fork 141
/
CMakeLists.txt
32 lines (29 loc) · 1.18 KB
/
CMakeLists.txt
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
29
30
31
32
cmake_minimum_required(VERSION 3.5)
project(msft_proxy
VERSION 0.1.0 # local build version
LANGUAGES CXX)
add_library(msft_proxy INTERFACE)
target_compile_features(msft_proxy INTERFACE cxx_std_20)
target_include_directories(msft_proxy INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<INSTALL_INTERFACE:include>)
# install and export the project. project name - proxy
include(GNUInstallDirs)
install(TARGETS msft_proxy
EXPORT proxyConfig)
install(FILES proxy.h
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/proxy)
install(EXPORT proxyConfig DESTINATION ${CMAKE_INSTALL_DATADIR}/proxy)
export(TARGETS msft_proxy FILE proxyConfig.cmake)
include(CMakePackageConfigHelpers)
write_basic_package_version_file(proxyConfigVersion.cmake
COMPATIBILITY SameMajorVersion
ARCH_INDEPENDENT)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/proxyConfigVersion.cmake
DESTINATION ${CMAKE_INSTALL_DATADIR}/proxy)
# build tests if BUILD_TESTING is ON
include(CTest)
if (BUILD_TESTING)
add_subdirectory(tests)
add_subdirectory(benchmarks)
add_subdirectory(samples)
endif()