-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
34 lines (28 loc) · 1.41 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
# ===========================================================================
# SeqAn - The Library for Sequence Analysis
# ===========================================================================
# File: /sandbox/tutorial_sandbox/CMakeLists.txt
#
# CMakeLists.txt file for sandbox/tutorial_sandbox.
# ===========================================================================
cmake_minimum_required (VERSION 2.8.2)
project (seqan_sandbox_tutorial_sandbox)
# Add the paths sandbox/tutorial_sandbox/include and sandbox/tutorial_sandbox/include to the paths that CMake
# searches for libraries.
set (CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/include
${CMAKE_CURRENT_SOURCE_DIR}/../../extras/include
${CMAKE_CURRENT_SOURCE_DIR}/../../core/include)
# Setup the library modules from core and extras.
seqan_setup_library (sandbox_tutorial_sandbox core extras)
# Add subdirectory for apps.
add_subdirectory (apps)
# 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"))
add_subdirectory (demos)
endif ()
# Tests are only built when building in DEVLOP mode.
if ("${SEQAN_BUILD_SYSTEM}" STREQUAL "DEVELOP")
add_subdirectory (tests)
endif ()