forked from seqan/seqan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
165 lines (134 loc) · 6.67 KB
/
CMakeLists.txt
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# ===========================================================================
# SeqAn - The Library for Sequence Analysis
# ===========================================================================
# File: /CMakeLists.txt
#
# Main CMakeLists.txt file.
# ===========================================================================
project (seqan)
# ===========================================================================
# We require CMake 2.8.2. Since it is available in the currently stable
# Debian, it should be available everywhere else, too.
# ===========================================================================
cmake_minimum_required (VERSION 2.8.2)
# ===========================================================================
# Warn People About the Perils Of In-Source Builds
# ===========================================================================
if (EXISTS "$CMAKE_BINARY_DIR/CMakeLists.txt")
if (EXISTS "$CMAKE_BINARY_DIR/I_WANT_IN_SOURCE_BUILDS")
set (IN_SOURCE_BUILD YES)
else (EXISTS "$CMAKE_BINARY_DIR/I_WANT_IN_SOURCE_BUILDS")
message ("CAUTION: In-source builds are not allowed by default!")
message ("")
message ("(If you want to use Eclipse and have read the 'Getting Started,")
message ("with Eclipse Tutorial' then see the instructions below.)")
message ("")
message ("Instead of doing in source builds, go to into the directory build")
message ("and call CMake from there.")
message ("We recommend you to create an additional directory level, this")
message ("allows you to have multiple build configurations (e.g. Debug,")
message ("Release) or project types.")
message ("")
message (" cd build")
message (" mkdir Debug")
message (" cd Debug")
message (" cmake ../.. -DCMAKE_BUILD_TYPE=Debug")
message ("")
message ("NOTE: CMake has created some files in this directory that you have")
message ("to remove before executing the above commands.")
message ("")
message (" [Linux, Mac Os X] rm -rf CMakeCache.txt CMakeFiles")
message (" [Windows] del CMakeCache.txt ; rmdir /S CMakeFiles")
message ("")
message ("If you want to use Eclipse then you might want to have in-source")
message ("builds because of limitations of Eclipse CDT4. In this case")
message ("Create a file in this directory called I_WANT_IN_SOURCE_BUILDS:")
message ("")
message (" [Linux, Mac Os X] touch I_WANT_IN_SOURCE_BUILDS")
message (" [Windows] type nul >> I_WANT_IN_SOURCE_BUILDS")
message ("")
message (FATAL_ERROR "Please follow the instructions above.")
endif (EXISTS "$CMAKE_BINARY_DIR/I_WANT_IN_SOURCE_BUILDS")
endif (EXISTS "$CMAKE_BINARY_DIR/CMakeLists.txt")
# ===========================================================================
# Setup Variables
# ===========================================================================
if (NOT CMAKE_BUILD_TYPE)
set (CMAKE_BUILD_TYPE Release CACHE STRING
"Choose the type of build, options are: Debug Release RelWithDebInfo ..."
FORCE)
endif (NOT CMAKE_BUILD_TYPE)
# Clear CTD executable list, will be set on reconfiguration.
set (SEQAN_CTD_EXECUTABLES CACHE INTERNAL "Global list of executables for workflow integration.")
# ===========================================================================
# Build System Configuration Variables
# ===========================================================================
# Setting SEQAN_ENABLE_CUDA to ON through the command line or CMakeCache.txt
# enables CUDA, provided the CUDA toolkit is found.
option (SEQAN_ENABLE_CUDA
"Enable CUDA, if the toolkit is available."
OFF)
# ===========================================================================
# Setup Modules and Find Packages.
# ===========================================================================
# Note that the find modules in util/make take precedence
# over the built-in ones from CMake. This is used in
# FindBZip2, for example which we slightly modify.
set (CMAKE_MODULE_PATH
${CMAKE_CURRENT_SOURCE_DIR}/util/cmake/FindTBB
${CMAKE_CURRENT_SOURCE_DIR}/util/cmake
${CMAKE_MODULE_PATH})
#message (STATUS "CMAKE_MODULE_PATH is ${CMAKE_MODULE_PATH}")
# ===========================================================================
# Add contrib to CMAKE_FIND_ROOT_PATH.
# ===========================================================================
include (SeqAnContribs)
# ===========================================================================
# Build Mode Branches
# ===========================================================================
message (STATUS "Initializing SeqAn Build System...")
set (SEQAN_USE_SEQAN_BUILD_SYSTEM TRUE CACHE INTERNAL "Use SeqAn build system." FORCE)
#set (SEQAN_PREFIX_SHARE .)
include (SeqAnBuildSystem)
set (SEQAN_ROOT_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}" CACHE INTERNAL "Root source directory." FORCE)
seqan_build_system_init ()
seqan_get_repository_info ()
# ===========================================================================
# Include Subdirectories
# ===========================================================================
# Tests are only built when building in DEVELOP mode.
if ("${SEQAN_BUILD_SYSTEM}" STREQUAL "DEVELOP")
message (STATUS "Configuring tests")
add_subdirectory (tests)
endif ()
# Demos are required when doing a whole SeqAn release (copy demos) or when
# developing (build demos).
if (("${SEQAN_BUILD_SYSTEM}" STREQUAL "SEQAN_RELEASE") OR
("${SEQAN_BUILD_SYSTEM}" STREQUAL "DEVELOP"))
message (STATUS "Configuring demos")
add_subdirectory (demos)
endif ()
message (STATUS "Configuring apps")
add_subdirectory (apps)
message (STATUS "Configuring dox")
add_subdirectory (dox)
message (STATUS "Configuring manual")
add_subdirectory (manual)
message (STATUS "Configuring util/py_lib")
add_subdirectory (util/py_lib)
# ===========================================================================
# Register Libraries (for GUI project generators)
# ===========================================================================
seqan_setup_library ()
# ===========================================================================
# Include CPack
# ===========================================================================
include (package)
# ===========================================================================
# Check Optional Libraries, Print Usage
# ===========================================================================
#include (FeatureSummary)
# ===========================================================================
# Setup Common Tool Description for Generic Workflow Nodes
# ===========================================================================
include (SeqAnCtdSetup)