blob: bd712cc236a8062e9f79d4be3f9c0f3d23ea4435 (
plain)
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
|
find_path(asio_INCLUDE_DIR
NAMES asio.hpp
)
if(asio_INCLUDE_DIR-NOTFOUND)
message(FATAL_ERROR "Could not find asio library")
set(asio_FOUND FALSE)
else()
set(asio_FOUND TRUE)
set(ASIO_INCLUDE_DIR ${asio_INCLUDE_DIR})
endif()
if(asio_FOUND)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(asio
REQUIRED_VARS asio_INCLUDE_DIR)
if(NOT TARGET asio::asio)
set(asio_INCLUDE_DIRS ${asio_INCLUDE_DIR})
add_library(asio::asio INTERFACE IMPORTED)
set_target_properties(asio::asio PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES ${asio_INCLUDE_DIR}
INTERFACE_COMPILE_DEFINITIONS ASIO_STANDALONE)
mark_as_advanced(asio_INCLUDE_DIR)
endif()
endif()
|