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.
13 lines
504 B
13 lines
504 B
include(functions/FetchContent_MakeAvailableExcludeFromAll) |
|
|
|
set(SOL2_ENABLE_INSTALL OFF) |
|
|
|
include(FetchContent) |
|
FetchContent_Declare(sol2 |
|
URL https://github.com/ThePhD/sol2/archive/9c882a28fdb6f4ad79a53a4191b43ce48a661175.tar.gz |
|
URL_HASH MD5=2637c3fcdcce3ff34b36437c1d3b99d1 |
|
) |
|
FetchContent_MakeAvailableExcludeFromAll(sol2) |
|
|
|
target_include_directories(sol2 SYSTEM BEFORE INTERFACE ${CMAKE_CURRENT_LIST_DIR}/sol_config) |
|
target_compile_definitions(sol2 INTERFACE SOL_NO_EXCEPTIONS=1)
|
|
|