forked from BlueBrain/Monsteer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
58 lines (47 loc) · 1.62 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
#
# Copyright (c) 2011-2015, Daniel.Nachbaur@epfl.ch
#
# This file is part of Monsteer <https://github.com/BlueBrain/Monsteer>
#
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
project(Monsteer)
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake
${CMAKE_SOURCE_DIR}/CMake/common)
include(GitExternal)
set(VERSION_MAJOR "0")
set(VERSION_MINOR "4")
set(VERSION_PATCH "0")
set(VERSION_ABI 4)
set(MONSTEER_ISSUES_URL "https://github.com/BlueBrain/Monsteer/issues")
set(MONSTEER_DESCRIPTION
"Interactive Supercomputing - Monitoring and Steering for NEST simulations")
set(MONSTEER_MAINTAINER
"BBP Visualization Team <bbp-open-source@googlegroups.com>")
set(MONSTEER_LICENSE LGPL)
include(Common)
common_package(BBPTestData)
common_package(Boost REQUIRED COMPONENTS filesystem serialization system
python${USE_BOOST_PYTHON_VERSION}
program_options thread
unit_test_framework)
common_package(Brion REQUIRED)
common_package(FlatBuffers REQUIRED)
common_package(Lunchbox REQUIRED)
common_package(MPI)
common_package(music)
common_package(Qt5Widgets)
common_package(PythonInterp)
common_package(PythonLibs)
common_package(vmmlib REQUIRED)
common_package(zeq REQUIRED)
common_package_post()
set(MONSTEER_DEPENDENT_LIBRARIES Lunchbox zeq)
add_subdirectory(monsteer)
add_subdirectory(apps)
add_subdirectory(tests)
add_subdirectory(examples)
include(CPackConfig)
set(COMMON_PROJECT_DOMAIN ch.epfl.bluebrain)
set(DOXYGEN_MAINPAGE_MD README.md)
set(DOXYGEN_EXTRA_INPUT ${PROJECT_SOURCE_DIR}/README.md)
include(DoxygenRule)