12 lines
253 B
CMake
12 lines
253 B
CMake
|
find_package(glaze QUIET)
|
||
|
if(NOT glaze_FOUND)
|
||
|
include(FetchContent)
|
||
|
FetchContent_Declare(
|
||
|
glaze
|
||
|
GIT_REPOSITORY https://github.com/stephenberry/glaze.git
|
||
|
GIT_TAG v4.0.1
|
||
|
GIT_SHALLOW TRUE
|
||
|
)
|
||
|
FetchContent_MakeAvailable(glaze)
|
||
|
endif()
|