-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
30 lines (23 loc) · 965 Bytes
/
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
cmake_minimum_required(VERSION 3.0)
project(mmaptwo_plus CXX)
option(BUILD_TESTING "Enable testing.")
option(BUILD_SHARED_LIBS "Enable shared library construction.")
set(MMAPTWO_PLUS_OS CACHE STRING "Target memory mapping API.")
add_library(mmaptwo_plus "mmaptwo.cpp" "mmaptwo.hpp")
target_compile_features(mmaptwo_plus PUBLIC
cxx_override cxx_nullptr cxx_constexpr cxx_noexcept
)
if (MMAPTWO_PLUS_OS GREATER -1)
target_compile_definitions(mmaptwo_plus
PRIVATE "MMAPTWO_PLUS_OS=${MMAPTWO_PLUS_OS}")
endif (MMAPTWO_PLUS_OS GREATER -1)
if (WIN32 AND BUILD_SHARED_LIBS)
target_compile_definitions(mmaptwo_plus
PUBLIC "MMAPTWO_PLUS_WIN32_DLL")
endif(WIN32 AND BUILD_SHARED_LIBS)
if (BUILD_TESTING)
add_executable(mmaptwo_plus_dump "tests/dump.cpp")
target_link_libraries(mmaptwo_plus_dump mmaptwo_plus)
add_executable(mmaptwo_plus_config "tests/config.cpp")
target_link_libraries(mmaptwo_plus_config mmaptwo_plus)
endif (BUILD_TESTING)