1
0
Fork 0
mirror of https://github.com/cosmo-sims/monofonIC.git synced 2024-09-18 15:53:45 +02:00
monofonIC/external/genericio.cmake
2024-03-12 16:20:07 -05:00

17 lines
507 B
CMake

cmake_minimum_required(VERSION 3.11)
include(FetchContent)
FetchContent_Declare(
genericio
GIT_REPOSITORY https://git.cels.anl.gov/hacc/genericio.git
GIT_TAG master
GIT_SHALLOW YES
GIT_PROGRESS TRUE
USES_TERMINAL_DOWNLOAD TRUE # <---- this is needed only for Ninja
)
FetchContent_GetProperties(genericio)
if(NOT genericio_POPULATED)
set(FETCHCONTENT_QUIET OFF)
FetchContent_Populate(genericio)
add_subdirectory(${genericio_SOURCE_DIR} ${genericio_BINARY_DIR})
endif()