-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
61 lines (49 loc) · 1.14 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
##################
# get that gravy #
##################
cmake_minimum_required( VERSION 2.8 )
include( $ENV{HOME}/.dmake/dmake.cmake )
#########
# setup #
#########
dmake_project_begin( Bees 0 1 0 )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g" )
#####################
# bees dependencies #
#####################
dmake_dependency_declare( Monarch 0 1 0 )
dmake_dependency_foreign_declare( Boost 1 52 0 )
dmake_dependency_foreign_declare( FFTW3 1 0 0 )
################
# bees library #
################
dmake_library_declare( BeesUtility Utility )
dmake_library_headers( BeesUtility
BComplex.hh
BException.hh
)
dmake_library_sources( BeesUtility
BComplex.cc
BException.cc
)
dmake_library_declare( BeesBase Base )
dmake_library_headers( BeesBase
BComponent.hh
BData.hh
BProcessor.hh
)
dmake_library_sources( BeesBase
BComponent.cc
BData.cc
)
####################
# bees executables #
####################
dmake_executable_declare( TestException Executables/Validation )
dmake_executable_sources( TestException
TestException.cc
)
#####################
# bees installation #
#####################
dmake_project_end()