requirements.cmake

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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)


FetchContent_Declare(
        felspar-memory
        GIT_REPOSITORY https://github.com/Felspar/memory.git
        GIT_TAG main
        GIT_SHALLOW true
    )
FetchContent_MakeAvailable(felspar-memory)