requirements.cmake
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | include(FetchContent) FetchContent_Declare( felspar-test GIT_REPOSITORY https://github.com/Felspar/test.git GIT_TAG main GIT_SHALLOW true ) FetchContent_MakeAvailable(felspar-test) FetchContent_Declare( felspar-exceptions GIT_REPOSITORY https://github.com/Felspar/exceptions.git GIT_TAG main GIT_SHALLOW true ) FetchContent_MakeAvailable(felspar-exceptions) |