Add dependencies

This commit is contained in:
2020-11-29 19:26:21 +01:00
parent 7dc90b3e83
commit 097669bc44
5 changed files with 38 additions and 2 deletions

10
3rdParty/pugixml/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,10 @@
include(FetchContent)
FetchContent_Declare(
pugixml
GIT_REPOSITORY https://github.com/zeux/pugixml.git
GIT_TAG v1.11.4
GIT_SHALLOW TRUE
)
set(PUGIXML_BUILD_TESTS OFF)
FetchContent_MakeAvailable(pugixml)