-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
59 lines (47 loc) · 1.69 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
cmake_minimum_required(VERSION 3.20)
project(asio_experiments)
if (SANITIZE_ADDRESS)
add_compile_options(-fsanitize=address)
add_link_options(-fsanitize=address)
endif()
set(ASIOEX_DEFAULT_ENABLE_TESTING OFF)
if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
set(ASIOEX_DEFAULT_ENABLE_TESTING ON)
endif ()
include(CTest)
if (NOT BUILD_TESTING)
if (ASIOEX_DEFAULT_ENABLE_TESTING)
enable_testing()
endif ()
endif ()
set(CMAKE_CXX_STANDARD 20)
message(STATUS "Compiler is ${CMAKE_CXX_COMPILER_ID}")
if (CMAKE_CXX_COMPILER_ID MATCHES "[Cc]lang")
if (CMAKE_CXX_COMPILER_FRONTEND_VARIANT MATCHES "MSVC") # clang-cl
add_compile_options("/await:strict")
elseif (CMAKE_CXX_COMPILER_FRONTEND_VARIANT MATCHES "GNU") # clang native
endif()
elseif (CMAKE_CXX_COMPILER_ID MATCHES "GNU") # both
add_compile_options("-fconcepts-diagnostics-depth=10")
endif()
include(FetchContent)
FetchContent_Declare(asio
GIT_REPOSITORY https://github.com/chriskohlhoff/asio.git
GIT_TAG master
GIT_SHALLOW Yes)
FetchContent_GetProperties(asio)
if (NOT asio_POPULATED)
FetchContent_Populate(asio)
endif ()
find_package(Threads REQUIRED)
add_library(asio_asio INTERFACE)
target_include_directories(asio_asio INTERFACE "${asio_SOURCE_DIR}/asio/include")
target_include_directories(asio_asio INTERFACE "$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>")
target_link_libraries(asio_asio INTERFACE Threads::Threads)
add_library(asio::asio ALIAS asio_asio)
find_package(Boost REQUIRED)
message(STATUS "BUILD_TESTING=${BUILD_TESTING}")
message(STATUS "ASIOEX_DEFAULT_ENABLE_TESTING=${ASIOEX_DEFAULT_ENABLE_TESTING}")
if (BUILD_TESTING)
add_subdirectory(test)
endif ()