-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
43 lines (39 loc) · 1.08 KB
/
CMakeLists.txt
File metadata and controls
43 lines (39 loc) · 1.08 KB
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
# -*- cmake -*-
include(FetchContent)
if (SPADES_USE_JEMALLOC)
add_subdirectory(jemalloc EXCLUDE_FROM_ALL)
endif()
if (SPADES_USE_MIMALLOC)
add_subdirectory(mimalloc EXCLUDE_FROM_ALL)
endif()
# Need to put it first as e.g. bwa depends on zlib
FetchContent_Declare(zlib_ng
SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/zlib-ng")
FetchContent_GetProperties(zlib_ng)
if (NOT zlib_ng_POPULATED)
set(SKIP_INSTALL_ALL ON)
set(ZLIB_COMPAT ON)
set(WITH_GTEST OFF)
FetchContent_Populate(zlib_ng)
add_subdirectory(${zlib_ng_SOURCE_DIR} ${zlib_ng_BINARY_DIR} EXCLUDE_FROM_ALL)
endif()
add_subdirectory(nlopt)
add_subdirectory(python_libs/pyyaml3)
add_subdirectory(bamtools)
add_subdirectory(samtools)
add_subdirectory(cppformat)
add_subdirectory(ssw)
add_subdirectory(llvm)
add_subdirectory(bwa)
add_subdirectory(gqf)
add_subdirectory(edlib)
set(LEXY_ENABLE_INSTALL OFF)
add_subdirectory(lexy)
add_subdirectory(easel)
add_subdirectory(hmmer)
add_subdirectory(googletest)
add_subdirectory(teamcity_gtest)
add_subdirectory(spoa)
if (SPADES_USE_NCBISDK)
add_subdirectory(ncbi EXCLUDE_FROM_ALL)
endif()