13 lines
271 B
CMake
13 lines
271 B
CMake
if(NOT TARGET pugixml)
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
ctre
|
|
GIT_REPOSITORY https://code.3011.io/Mirrors/compile-time-regular-expressions
|
|
GIT_TAG v3.10.0
|
|
)
|
|
|
|
FetchContent_MakeAvailable(
|
|
ctre
|
|
)
|
|
endif()
|