forked from coolfluid/coolfluid3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
202 lines (134 loc) · 6.5 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# coolfluid cmake build system
#
# Command line options for cmake:
# -DCMAKE_BUILD_TYPE=DEBUG will set the build type
# -DCF3_SKIP_FORTRAN=:BOOL=ON will not test for fortran language
# -G"Visual Studio 9 2008" will generate for WIN32
# -DCMAKE_INSTALL_PREFIX=DIR will specify where to install
# -DCF3_PLUGIN_DIRS:STRING="/dir/path1;/dir/path2"
#
# TODO
#
# * try using precompiled headers and add a check to their support
#
# * implement and coolfluid3_add_executable
# * add license to cmake files
##############################################################################
# cmake behavior
##############################################################################
cmake_minimum_required( VERSION 2.8.8 FATAL_ERROR )
cmake_policy( VERSION 2.8.3 )
##############################################################################
# project definition and versioning
##############################################################################
project( coolfluid C CXX Fortran )
# disallow in-source build
if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
message(FATAL_ERROR "${PROJECT_NAME} requires an out of source build.\nPlease create a separate build directory and run 'cmake path/to/project [options]' there.")
endif()
# option to skip fortran language
# kernel does not need fortran but some plugins might
# developers that know that they wont need it may turn it off in systems where is not available
if( CF3_ENABLE_FORTRAN )
enable_language( Fortran OPTIONAL )
else()
set( CF3_ENABLE_FORTRAN OFF CACHE BOOL "Skipping fortran language" FORCE )
endif()
# optionally include personal options ( alternative to passing a cache initialization to cmake)
# developers may create this file and to define options that they don't want on the cache
include( ${coolfluid_BINARY_DIR}/coolfluid.cmake OPTIONAL )
# include other configurations
set( CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
##############################################################################
message( STATUS "[configuring ${PROJECT_NAME}]")
##############################################################################
include( DefineVersions ) # define variables with coolfluid versions
include( DefineMacros ) # define our own macros
include( DefineFileExtensions ) # define project files extensions
include( CTest ) # include testing support
include( DefineInstallPaths ) # define where to install the files after building
include( ResetVariables ) # reset variables used for the build and set DEPS_ROOT if needed
coolfluid_log("")
##############################################################################
coolfluid_log(" setting build options ")
##############################################################################
include( DefineGlobalOptions ) # add user global options
include( CheckOperatingSystem ) # check for operating system features
include( CheckCompilerFeatures ) # check compiler features
include( DefineBuildModes ) # define how build modes behave ( may override some options )
include( DefineBuildRules ) # defined default compilation flags and linking rules per architecture
include( ApplyGlobalOptions ) # take options into effect
coolfluid_log("")
##############################################################################
coolfluid_log(" generic configuration ")
##############################################################################
add_subdirectory( cmake ) # dir with macros to be installed
add_subdirectory( tools ) # dir with tools and scripts
add_subdirectory( doc ) # dir with documentation to be installed
include( DetectSoftware ) # find sofwtare dependencies
include( CheckSourceRevision ) # check for subversion support
coolfluid_log("")
##############################################################################
coolfluid_log(" kernel configuration ")
##############################################################################
# dir includes
include_directories( ${coolfluid_BINARY_DIR} )
include_directories( ${coolfluid_SOURCE_DIR} )
include_directories( ${coolfluid_SOURCE_DIR}/cf3 )
include_directories( ${coolfluid_SOURCE_DIR}/include )
include_directories( ${coolfluid_SOURCE_DIR}/plugins )
# add dir with kernel config (automatic generated headers)
add_subdirectory( config )
# define the resources directory
add_subdirectory( resources )
# add dir with external kernel dependencies but locally included
add_subdirectory( include )
# add dir with kernel sources
add_subdirectory( cf3 )
# add dir with unit tests
add_subdirectory( test )
# sandbox is where we play around before putting stuff in the released code, off by default
if( CF3_ENABLE_SANDBOX )
add_subdirectory( sandbox EXCLUDE_FROM_ALL )
endif()
coolfluid_log("")
##############################################################################
coolfluid_log(" plugin configuration ")
##############################################################################
# add dir with kernel plugins
# these are independent source trees that happen to be distributed with the kernel for convinience
add_subdirectory( plugins )
# find plugins
# directories with plugins
# developer may set several base directories that host multiple plugins each
# it will only add directories that define a coolfluid plugin
# ( have coolfluid_define_plugin in their CMakeList.txt )
foreach( EXDIR ${CF3_PLUGIN_DIRS} )
coolfluid_log_file( "---------------------------------------------------------" )
coolfluid_log_file( "PLUGINS DIR [${EXDIR}]")
coolfluid_log_file( "---------------------------------------------------------" )
coolfluid3_list_subdirs( SUBDIRS ${EXDIR} )
foreach( subdir_name ${SUBDIRS} )
set( subdir "${EXDIR}/${subdir_name}" )
coolfluid3_add_plugin( ${subdir} )
endforeach()
endforeach()
# isolated plugins
foreach( EXDIR ${CF3_PLUGINS} )
coolfluid_log_file( "PLUGIN DIR [${EXDIR}]")
coolfluid3_add_plugin( ${EXDIR} )
endforeach()
coolfluid_log("")
##############################################################################
# summary
##############################################################################
include( PrintSummary )
##############################################################################
# finalize build
##############################################################################
if(CF3_CHECK_ORPHAN_FILES)
include( ProcessOrphanFiles ) # processes the list of orphan files
endif()
include( DumpVariables ) # dump relevant variables in the log file
include( PrepareCPack ) # packaging instructions
coolfluid_log( "Full configuration log: ${PROJECT_LOG_FILE}" )