nutri/cmake/FindGlaze.cmake

12 lines
253 B
CMake
Raw Permalink Normal View History

2025-01-15 12:40:39 +00:00
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()