-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
44 lines (37 loc) · 961 Bytes
/
CMakeLists.txt
File metadata and controls
44 lines (37 loc) · 961 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
include(FetchContent)
FetchContent_Declare(
tatami
GIT_REPOSITORY https://github.com/tatami-inc/tatami
GIT_TAG master # ^4.1.0
)
FetchContent_Declare(
tatami_stats
GIT_REPOSITORY https://github.com/tatami-inc/tatami_stats
GIT_TAG master # ^2.0.0
)
FetchContent_Declare(
scran_blocks
GIT_REPOSITORY https://github.com/libscran/scran_blocks
GIT_TAG master # ^0.1.0
)
FetchContent_Declare(
topicks
GIT_REPOSITORY https://github.com/libscran/topicks
GIT_TAG master # ^0.2.1
)
FetchContent_Declare(
quickstats
GIT_REPOSITORY https://github.com/LTLA/quickstats
GIT_TAG master # ^0.1.0
)
FetchContent_Declare(
sanisizer
GIT_REPOSITORY https://github.com/LTLA/sanisizer
GIT_TAG master # ^0.2.0
)
FetchContent_MakeAvailable(tatami)
FetchContent_MakeAvailable(tatami_stats)
FetchContent_MakeAvailable(scran_blocks)
FetchContent_MakeAvailable(topicks)
FetchContent_MakeAvailable(quickstats)
FetchContent_MakeAvailable(sanisizer)