kanjivg-tools/CMake/pugixml.cmake

14 lines
258 B
CMake
Raw Normal View History

if(NOT TARGET pugixml::static)
include(FetchContent)
2025-05-25 00:42:58 +02:00
FetchContent_Declare(
pugixml
GIT_REPOSITORY https://code.3011.io/Mirrors/pugixml
GIT_TAG v1.15
)
2025-05-25 00:42:58 +02:00
FetchContent_MakeAvailable(
pugixml
)
endif()