Files
OpenVulkano/3rdParty/pugixml/CMakeLists.txt

11 lines
262 B
CMake

include(FetchContent)
FetchContent_Declare(
pugixml
GIT_REPOSITORY https://github.com/zeux/pugixml.git
GIT_TAG v1.11.4
GIT_SHALLOW TRUE
)
set(BUILD_SHARED_LIBS OFF)
set(PUGIXML_BUILD_TESTS OFF)
FetchContent_MakeAvailable(pugixml)