Files
OpenVulkano/3rdParty/libstud-uuid/CMakeLists.txt
2025-03-26 15:08:11 +01:00

17 lines
353 B
CMake

include(FetchContent)
if(NOT DEFINED LIBSTUD_REPO)
set(LIBSTUD_REPO https://git.madvoxel.net/Mirrors/libstud-uuid.git)
endif ()
set(FETCHCONTENT_UPDATES_DISCONNECTED ON)
FetchContent_Declare(
libstud-uuid
EXCLUDE_FROM_ALL
GIT_REPOSITORY ${LIBSTUD_REPO}
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(libstud-uuid)