-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
107 lines (89 loc) · 3.15 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#
# Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
# Official repository: https://github.com/cppalliance/ws_io
#
cmake_minimum_required(VERSION 3.8...3.16)
set(BOOST_WS_IO_VERSION 1)
if(BOOST_SUPERPROJECT_VERSION)
set(BOOST_WS_IO_VERSION ${BOOST_SUPERPROJECT_VERSION})
endif()
project(boost_ws_io VERSION "${BOOST_WS_IO_VERSION}" LANGUAGES CXX)
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
include(CTest)
option(BOOST_WS_IO_BUILD_TESTS "Build boost::ws_io tests" ${BUILD_TESTING})
set(BOOST_WS_IO_IS_ROOT ON)
else()
set(BOOST_WS_IO_BUILD_TESTS OFF CACHE BOOL "")
set(BOOST_WS_IO_IS_ROOT OFF)
endif()
include(GNUInstallDirs)
if(BOOST_WS_IO_IS_ROOT)
set(BOOST_INCLUDE_LIBRARIES ws_io ws_proto url)
set(BOOST_EXCLUDE_LIBRARIES ws_io)
set(CMAKE_FOLDER Dependencies)
add_subdirectory(../.. Dependencies/boost EXCLUDE_FROM_ALL)
unset(CMAKE_FOLDER)
set(BOOST_WS_IO_BUILD_EXAMPLES ON)
else()
set(BOOST_WS_IO_BUILD_EXAMPLES OFF)
endif()
function(boost_ws_io_setup_properties target)
target_compile_features(${target} PUBLIC cxx_constexpr)
target_compile_definitions(${target} PUBLIC BOOST_WS_IO_NO_LIB=1)
if(BOOST_SUPERPROJECT_VERSION)
target_include_directories(${target} PUBLIC "${PROJECT_SOURCE_DIR}/include")
else()
target_include_directories(${target}
PUBLIC
"$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>"
"$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>"
)
endif()
target_link_libraries(${target}
PUBLIC
Boost::asio
Boost::assert
Boost::config
Boost::system
Boost::url
Boost::ws_proto
)
if(MINGW)
target_link_libraries(${target} PUBLIC ws2_32 wsock32)
endif()
endfunction()
file(GLOB_RECURSE BOOST_WS_IO_HEADERS CONFIGURE_DEPENDS
include/boost/*.hpp
include/boost/*.ipp
include/boost/*.natvis
)
file(GLOB_RECURSE BOOST_WS_IO_SOURCES CONFIGURE_DEPENDS src/*.cpp src/*.hpp)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/include/boost PREFIX "" FILES ${BOOST_WS_IO_HEADERS})
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/src PREFIX "ws_io" FILES ${BOOST_WS_IO_SOURCES})
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} PREFIX "" FILES Jamfile)
add_library(boost_ws_io ${BOOST_WS_IO_HEADERS} ${BOOST_WS_IO_SOURCES} build/Jamfile)
target_link_libraries(boost_ws_io PUBLIC Threads::Threads)
add_library(Boost::ws_io ALIAS boost_ws_io)
boost_ws_io_setup_properties(boost_ws_io)
target_compile_definitions(boost_ws_io
PUBLIC
BOOST_WS_IO_NO_LIB
)
if(BUILD_SHARED_LIBS)
target_compile_definitions(boost_ws_io PUBLIC BOOST_WS_IO_DYN_LINK=1)
else()
target_compile_definitions(boost_ws_io PUBLIC BOOST_WS_IO_STATIC_LINK=1)
endif()
if(BOOST_WS_IO_BUILD_TESTS)
add_subdirectory(test)
endif()
if(BOOST_WS_IO_BUILD_EXAMPLES)
add_subdirectory (example)
endif()