kanjivg-tools/CMake/ctre.cmake

14 lines
271 B
CMake
Raw Normal View History

if(NOT TARGET pugixml)
include(FetchContent)
2025-05-25 00:42:58 +02:00
FetchContent_Declare(
ctre
GIT_REPOSITORY https://code.3011.io/Mirrors/compile-time-regular-expressions
GIT_TAG v3.10.0
)
2025-05-25 00:42:58 +02:00
FetchContent_MakeAvailable(
ctre
)
endif()