generated from seqan/app-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
53 lines (37 loc) · 1.45 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
cmake_minimum_required (VERSION 3.8)
## CUSTOMISE
# Define the application name and version.
project (minions VERSION 1.0.0)
## BUILD
# Make Release default build type
if (NOT CMAKE_BUILD_TYPE)
set (CMAKE_BUILD_TYPE Release CACHE STRING
"Choose the type of build, options are: Debug Release Coverage RelWithDebInfo MinSizeRel."
FORCE)
endif ()
# Specify the directories where to store the built archives, libraries and executables
set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
set (CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
# Messages
string (ASCII 27 Esc)
set (FontBold "${Esc}[1m")
set (FontReset "${Esc}[m")
# Dependency: SeqAn3.
find_package (SeqAn3 QUIET REQUIRED HINTS lib/seqan3/build_system)
# Dependency: strobemers.
add_library(strobemer_lib lib/strobemers/strobemers_cpp/index.cpp lib/strobemers/strobemers_cpp/index.hpp)
target_include_directories(strobemer_lib PUBLIC lib/strobemers/strobemers_cpp)
# Dependency: robin_hood.
add_subdirectory(lib/robin-hood-hashing)
# Use ccache.
include ("${SEQAN3_CLONE_DIR}/test/cmake/seqan3_require_ccache.cmake")
seqan3_require_ccache ()
# Add the application.
add_subdirectory (src)
message (STATUS "${FontBold}You can run `make` to build the application.${FontReset}")
## DOCUMENTATION
add_subdirectory (doc EXCLUDE_FROM_ALL)
## TEST
enable_testing ()
add_subdirectory (test EXCLUDE_FROM_ALL)