11 lines
228 B
CMake
11 lines
228 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
libstud-uuid
|
|
EXCLUDE_FROM_ALL
|
|
GIT_REPOSITORY https://github.com/GeorgH93/libstud-uuid.git
|
|
GIT_SHALLOW TRUE
|
|
)
|
|
|
|
FetchContent_MakeAvailable(libstud-uuid)
|