This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
255 lines (204 loc) · 9.23 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
#taken from http://geant4.cern.ch/support/source/geant4/CMakeLists.txt
IF(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
message(STATUS "Cycaless requires an out-of-source build.")
message(STATUS "Please remove these files from ${CMAKE_BINARY_DIR} first:")
message(STATUS "CMakeCache.txt")
message(STATUS "CMakeFiles")
message(STATUS "Once these files are removed, create a separate directory")
message(STATUS "and run CMake from there")
message(FATAL_ERROR "in-source build detected")
ENDIF()
# This project name is cycaless.
PROJECT(CYCALESS)
# quiets fortify_source warnings when not compiling with optimizations
# in linux distros where compilers were compiled with fortify_source enabled by
# default (e.g. Arch linux).
MESSAGE("${CMAKE_BUILD_TYPE}")
STRING(TOLOWER "${CMAKE_BUILD_TYPE}" BUILD_TYPE)
IF(NOT ${BUILD_TYPE} STREQUAL "release")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0")
ENDIF()
# no overflow warnings because of silly coin-ness
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-overflow")
# Direct any out-of-source builds to this directory
SET(CYCALESS_SOURCE_DIR ${CMAKE_SOURCE_DIR})
IF(NOT CYCLUS_DOC_ONLY)
# Direct any binary installation paths to this directory
SET(CYCALESS_BINARY_DIR ${CMAKE_BINARY_DIR})
# This makes all the libraries build as SHARED
SET(BUILD_SHARED_LIBS true)
# Setup build locations.
IF(NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY)
SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CYCALESS_BINARY_DIR}/bin)
endif()
IF(NOT CMAKE_LIBRARY_OUTPUT_DIRECTORY)
SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CYCALESS_BINARY_DIR}/lib)
endif()
IF(NOT CMAKE_ARCHIVE_OUTPUT_DIRECTORY)
SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CYCALESS_BINARY_DIR}/lib)
ENDIF()
SET(CYCALESS_EXECUTABLE_DIR ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
# use, i.e. don't skip the full RPATH for the build tree
SET(CMAKE_SKIP_BUILD_RPATH FALSE)
# when building, don't use the install RPATH already
# (but later on when installing)
SET(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
# add the automatically determined parts of the RPATH
# which point to directories outside the build tree to the install RPATH
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
# the RPATH to be used when installing, but only if it's not a system directory
LIST(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/lib" isSystemDir)
IF("${isSystemDir}" STREQUAL "-1")
SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
ENDIF("${isSystemDir}" STREQUAL "-1")
# Tell CMake where the modules are
SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_DIR}/share/cmake-2.8/Modules")
SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CYCALESS_SOURCE_DIR}/cmake)
MESSAGE("CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}")
# Include macros
INCLUDE(UseCyclus)
# Find cyclus
FIND_PACKAGE(Cyclus REQUIRED)
SET(CYCALESS_INCLUDE_DIR ${CYCALESS_INCLUDE_DIR} ${CYCLUS_CORE_INCLUDE_DIR})
SET(LIBS ${LIBS} ${CYCLUS_CORE_LIBRARIES})
# Find LibXML++ and dependencies
FIND_PACKAGE(LibXML++ REQUIRED)
SET(CYCALESS_INCLUDE_DIR ${CYCALESS_INCLUDE_DIR} ${LibXML++_INCLUDE_DIR} ${Glibmm_INCLUDE_DIRS} ${LibXML++Config_INCLUDE_DIR})
SET(LIBS ${LIBS} ${LibXML++_LIBRARIES})
MESSAGE("--LIBS: ${LIBS}")
MESSAGE("--LD_LIBRARY_PATH: $ENV{LD_LIBRARY_PATH}")
# Include the boost header files, system, and filesystem libraries
SET(Boost_USE_STATIC_LIBS OFF)
SET(Boost_USE_STATIC_RUNTIME OFF)
FIND_PACKAGE(Boost COMPONENTS filesystem system REQUIRED)
SET(CYCALESS_INCLUDE_DIR ${CYCALESS_INCLUDE_DIR} ${Boost_INCLUDE_DIR})
SET(LIBS ${LIBS} ${Boost_FILESYSTEM_LIBRARY})
SET(LIBS ${LIBS} ${Boost_SYSTEM_LIBRARY})
# find lapack and link to it
FIND_PACKAGE(LAPACK REQUIRED)
set(LIBS ${LIBS} ${LAPACK_LIBRARIES})
MESSAGE("\tFound LAPACK Libraries: ${LAPACK_LIBRARIES}")
# Find HDF5
FIND_PACKAGE(HDF5 REQUIRED)
ADD_DEFINITIONS(${HDF5_DEFINITIONS})
set(LIBS ${LIBS} ${HDF5_LIBRARIES})
# find coin and link to it
FIND_PACKAGE(COIN REQUIRED)
set(LIBS ${LIBS} ${COIN_LIBRARIES})
# include the agent directories
SET(CYCALESS_INCLUDE_DIR ${CYCALESS_INCLUDE_DIR} tests
${CYCLUS_CORE_INCLUDE_DIR}/..)
# include all the directories we just found
INCLUDE_DIRECTORIES(${CYCALESS_INCLUDE_DIR}
${COIN_INCLUDE_DIRS})
# ------------------------- Add the Agents -----------------------------------
ADD_SUBDIRECTORY(src)
# ------------------------- Google Test -----------------------------------
# Be sure to clear these each time
SET(GENERATED_TEST_LIST "" CACHE INTERNAL "")
SET(GENERATED_FILTER_LIST "" CACHE INTERNAL "")
SET(GENERATED_TEST_SOURCE_LIST "" CACHE INTERNAL "")
# The gtest include file directories.
SET(GTEST_INCLUDE_DIRS "${CYCALESS_INCLUDE_DIR}")
# Alerts CMake to any tests we need to worry about
INCLUDE_DIRECTORIES(${GTEST_INCLUDE_DIRS})
# Create an executable for all the gtests
# Options for testing
OPTION(USE_TESTING "Build testing" ON)
IF(USE_TESTING)
enable_testing()
INCLUDE(CTest)
ENDIF()
ADD_SUBDIRECTORY(tests)
SET(TestSource
${TestSource}
${CYCALESS_TEST_CORE}
)
FIND_PACKAGE(Threads)
IF(CMAKE_USE_PTHREADS_INIT) # The pthreads library is available.
SET(cxx_base_flags "${cxx_base_flags} -DGTEST_HAS_PTHREAD=1")
ENDIF()
# Build cycaless_unit_tests
ADD_EXECUTABLE(cycaless_unit_tests
tests/cycaless_unit_test_driver.cc
${TestSource}
)
TARGET_LINK_LIBRARIES(cycaless_unit_tests
dl ${LIBS} ${CYCLUS_TEST_LIBRARIES})
INSTALL(TARGETS cycaless_unit_tests
RUNTIME DESTINATION bin
COMPONENT testing
)
# read tests after building the driver, and add them to ctest
set(tgt "cycaless_unit_tests")
set(script "${CYCALESS_SOURCE_DIR}/config/generate_test_macros.py")
set(exec "--executable=${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${tgt}")
set(reg_dir "--reg_dir=${CYCALESS_SOURCE_DIR}/../${test_dir}")
set(out "--output=${CMAKE_BINARY_DIR}/CTestTestfile.cmake")
add_custom_command(TARGET ${tgt}
POST_BUILD
COMMAND python ${script} ${exec} ${reg_dir} ${out}
COMMENT "adding tests from ${tgt}"
DEPENDS
VERBATIM
)
# for post test commands
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/config/CTestCustom.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/CTestCustom.cmake"
IMMEDIATE @ONLY)
# for printing regression tests
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/config/print_regs.py"
"${CMAKE_CURRENT_BINARY_DIR}/print_regs.py"
IMMEDIATE @ONLY)
# AMS: I don't believe that this is needed anymore.
# This just copies the shared dir from cyclus to cycaless.
# However, the 'share/' dir should now be the same. So this
# was failing because you can't copy a file to itself.
#FILE(GLOB cyclus_shared "${CYCLUS_CORE_SHARE_DIR}/*")
#INSTALL(FILES ${cyclus_shared}
# DESTINATION share
# COMPONENT data
# )
# Here we set some components for installation with cpack
SET(CPACK_COMPONENTS_ALL cycaless testing libraries data core)
# Here's where we package it with CPack
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Cycaless : The Cyclus Additional Module Repository.")
SET(CPACK_DEBIAN_PACKAGE_MAINTAINER "CNERG, UW-Madison") #required
SET(CPACK_PACKAGE_VENDOR "CNERG, UW-Madison")
SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.rst")
SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.rst")
SET(CPACK_PACKAGE_VERSION_MAJOR "1")
SET(CPACK_PACKAGE_VERSION_MINOR "0")
#SET(CPACK_PACKAGE_VERSION_PATCH "0") # should use commit number here ?
SET(CPACK_PACKAGE_INSTALL_DIRECTORY "cycaless${CPACK_VERSION_MAJOR}.${CPACK_VERSION_MINOR}")
SET(CPACK_PACKAGE_NAME "${CMAKE_PROJECT_NAME}")
CONFIGURE_FILE("${CYCALESS_SOURCE_DIR}/cmake/CycalessCPackOptions.cmake.in"
"${CYCALESS_BINARY_DIR}/cmake/CycalessCPackOptions.cmake" @ONLY)
SET(CPACK_PROJECT_CONFIG_FILE "${CYCALESS_BINARY_DIR}/cmake/CycalessCPackOptions.cmake")
SET(CPACK_PACKAGE_EXECUTABLES "cycaless" "cycaless_unit_tests")
INCLUDE(CPack)
SET(ROOT_DIR ${CYCLUS_ROOT_DIR})
SET(PROJ_DIR ${PROJECT_BINARY_DIR})
SET(CORE_SHARE_DIR ${CYCLUS_CORE_SHARE_DIR})
ENDIF(NOT CYCLUS_DOC_ONLY)
# This is the directory that holds the doxygen doxyfile template (doxy.conf.in)
SET(DOC_INPUT_DIR ${CYCALESS_SOURCE_DIR}/doc)
# If doxygen exists, use the doc/CMakeLists.txt file for further instructions.
FIND_PACKAGE(Doxygen)
IF(DOXYGEN_FOUND)
ADD_SUBDIRECTORY(doc)
SET(DOC_OUTPUT_DIR ${CMAKE_BINARY_DIR}/doc)
ELSE(DOXYGEN_FOUND)
MESSAGE(STATUS "WARNING: Doxygen not found - doc won't be created")
ENDIF(DOXYGEN_FOUND)
# uninstall target
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/config/cmake_uninstall.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
IMMEDIATE @ONLY)
add_custom_target(uninstall
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)