You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
413 B
11 lines
413 B
include(FetchContent_MakeAvailableExcludeFromAll) |
|
|
|
include(FetchContent) |
|
FetchContent_Declare(asio |
|
URL https://github.com/diasurgical/asio/archive/2905afe2564dfdb3444f665ae363106f0acf2871.tar.gz |
|
URL_HASH MD5=4c1afc9d591ef85a5542af9731630dd6 |
|
) |
|
FetchContent_MakeAvailableExcludeFromAll(asio) |
|
|
|
add_library(asio INTERFACE) |
|
target_include_directories(asio INTERFACE ${asio_SOURCE_DIR}/asio/include)
|
|
|