1
0
Fork 0
mirror of https://github.com/cosmo-sims/monofonIC.git synced 2024-09-19 17:03:45 +02:00

added progress verbosity to cmake fetch to avoid impression that cmake hangs while it clones CLASS

This commit is contained in:
Oliver Hahn 2020-09-10 20:15:10 +02:00
parent ad2af877f4
commit 143e5382a9

View file

@ -4,10 +4,13 @@ FetchContent_Declare(
class
GIT_REPOSITORY https://github.com/ohahn/class_public.git
GIT_TAG master
GIT_PROGRESS TRUE
USES_TERMINAL_DOWNLOAD TRUE # <---- this is needed only for Ninja
)
FetchContent_GetProperties(class)
if(NOT class_POPULATED)
set(FETCHCONTENT_QUIET OFF)
FetchContent_Populate(class)
add_subdirectory(${class_SOURCE_DIR} ${class_BINARY_DIR})
endif()