1
0
Fork 0
mirror of https://github.com/gwm17/catima.git synced 2024-11-23 02:38:51 -05:00
catima/CMakeLists.txt

182 lines
5.9 KiB
CMake
Raw Normal View History

2019-05-12 14:14:53 -04:00
cmake_minimum_required(VERSION 3.2.0)
2017-07-25 12:19:11 -04:00
project(catima)
############ options #############
2018-10-21 16:08:16 -04:00
option(BUILD_SHARED_LIBS "build as shared library" ON)
2019-05-12 14:18:00 -04:00
option(PYTHON_MODULE "compile the Catima python module(requires numpy and cython installed)" OFF)
2017-07-25 12:19:11 -04:00
option(TESTS "build tests" OFF)
2019-10-22 13:34:09 -04:00
option(EXAMPLES "build examples" OFF)
2018-10-21 16:08:16 -04:00
option(APPS "build catima applications" ON)
2018-01-15 09:11:51 -05:00
option(GLOBAL "build with global, sources are required" OFF)
2018-07-31 11:40:25 -04:00
option(REACTIONS "enable/disable nuclear reaction rate" ON)
2018-10-21 16:08:16 -04:00
option(STORE_SPLINES "store splines, if disables splines are always recreated" ON)
option(GSL_INTEGRATION "use GSL integration" OFF)
option(GSL_INTERPOLATION "use GSL inteRPOLATION" OFF)
option(THIN_TARGET_APPROXIMATION "thin target approximation" ON)
option(GENERATE_DATA "make data tables generator" OFF)
2017-07-25 12:19:11 -04:00
######## build type ############
2018-10-18 20:51:01 -04:00
if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
set(CMAKE_BUILD_TYPE "Release")
2018-10-21 16:08:16 -04:00
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE}")
2018-10-18 20:51:01 -04:00
MESSAGE(STATUS "Build type Release")
else()
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g")
if (${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU")
2018-10-21 16:08:16 -04:00
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Wextra -Wfatal-errors -Wno-unused-parameter -Wno-sign-compare")
2018-10-18 20:51:01 -04:00
endif()
MESSAGE(STATUS "Build type Debug")
endif()
MESSAGE(STATUS "Build type: " ${CMAKE_BUILD_TYPE})
2017-07-25 12:19:11 -04:00
################################
######### compiler flags ###########
set(CMAKE_CXX_EXTENSIONS OFF)
2018-07-31 11:40:43 -04:00
set(CMAKE_CXX_STANDARD 14)
2017-07-25 12:19:11 -04:00
set(CMAKE_CXX_STANDARD_REQUIRED ON)
2018-10-18 20:51:01 -04:00
MESSAGE(STATUS "install prefix: " ${CMAKE_INSTALL_PREFIX})
2017-07-25 12:19:11 -04:00
2017-09-22 06:05:35 -04:00
if(APPLE)
set(RPATH_VARIABLE "DYLD_LIBRARY_PATH")
else()
set(RPATH_VARIABLE "LD_LIBRARY_PATH")
endif()
2017-07-25 12:19:11 -04:00
############# Requirements ##################
2018-10-21 16:08:16 -04:00
if(GSL_INTEGRATION OR GSL_INTERPOLATION)
find_package(GSL REQUIRED)
MESSAGE(STATUS "GSL include dirs: " ${GSL_INCLUDE_DIRS})
list(APPEND EXTRA_LIBS ${GSL_LIBRARIES} )
2017-07-25 12:19:11 -04:00
endif()
2018-04-29 18:16:45 -04:00
find_package(nurex QUIET)
if(nurex_FOUND)
message(STATUS "nurex library found")
set(NUREX ON)
2018-05-02 19:23:47 -04:00
list(APPEND EXTRA_LIBS nurex::nurex)
2018-04-29 18:16:45 -04:00
endif(nurex_FOUND)
2017-07-25 12:19:11 -04:00
configure_file(
2018-04-17 19:19:29 -04:00
"${CMAKE_CURRENT_SOURCE_DIR}/build_config.in"
"${CMAKE_CURRENT_BINARY_DIR}/include/catima/build_config.h"
2017-07-25 12:19:11 -04:00
)
configure_file("${PROJECT_SOURCE_DIR}/init.sh.in"
"${PROJECT_BINARY_DIR}/init.sh"
)
############### main build ###########################
file(GLOB SOURCES *.cpp)
2018-01-15 09:11:51 -05:00
if(GLOBAL)
file(GLOB GLOBAL_SOURCES global/*.c)
LIST (APPEND SOURCES ${GLOBAL_SOURCES})
endif(GLOBAL)
2017-07-25 12:19:11 -04:00
file(GLOB HEADERS *.h)
2018-01-24 08:21:28 -05:00
2018-10-22 18:04:01 -04:00
add_library(catima ${SOURCES})
2018-04-18 09:19:03 -04:00
set_target_properties(catima PROPERTIES
POSITION_INDEPENDENT_CODE ON
LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib
)
2018-10-21 16:08:16 -04:00
target_link_libraries(catima ${EXTRA_LIBS})
2018-01-24 08:21:28 -05:00
2019-10-22 13:34:09 -04:00
target_include_directories(catima
2018-01-24 08:21:28 -05:00
PUBLIC $<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/include>
$<BUILD_INTERFACE:${GSL_INCLUDE_DIRS}>
)
2018-10-21 16:08:16 -04:00
2018-04-17 19:19:29 -04:00
add_library(catima::catima ALIAS catima)
2018-01-24 08:21:28 -05:00
2017-07-25 12:19:11 -04:00
FILE(COPY ${HEADERS} DESTINATION ${PROJECT_BINARY_DIR}/include/catima)
2019-10-22 13:34:09 -04:00
# the compiler used for C++ files
2017-07-25 12:19:11 -04:00
MESSAGE( STATUS "CMAKE_CXX_COMPILER: " ${CMAKE_CXX_COMPILER} )
######## for python module
2018-10-21 16:08:16 -04:00
find_package(PythonInterp)
if(PYTHONINTERP_FOUND)
message("-- Python found: ${PYTHON_EXECUTABLE}")
endif()
2018-08-13 12:08:54 -04:00
if(PYTHON_MODULE)
2017-07-25 12:19:11 -04:00
if(NOT PYTHONINTERP_FOUND)
2019-10-22 13:34:09 -04:00
MESSAGE(SEND_ERROR "Python is required to build nurex python modules")
2017-07-25 12:19:11 -04:00
endif(NOT PYTHONINTERP_FOUND)
2019-05-12 14:14:53 -04:00
find_package(pybind11 REQUIRED)
set(PYBIND11_CPP_STANDARD -std=c++14)
pybind11_add_module(pycatima pymodule/pycatima)
target_include_directories(pycatima PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/include>
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/libs>
$<INSTALL_INTERFACE:include>)
target_link_libraries(pycatima PRIVATE catima)
2018-10-21 16:08:16 -04:00
2018-08-13 12:08:54 -04:00
endif(PYTHON_MODULE )
2017-07-25 12:19:11 -04:00
########## Sub Directories ###########
if(EXAMPLES)
file(GLOB EXAMPLES examples/*.cpp)
FILE(COPY ${EXAMPLES} DESTINATION ${PROJECT_BINARY_DIR}/examples)
FILE(COPY examples/makefile DESTINATION ${PROJECT_BINARY_DIR}/examples)
#add_subdirectory("examples")
endif(EXAMPLES)
if(TESTS)
2018-07-31 11:40:25 -04:00
enable_testing()
2017-07-25 12:19:11 -04:00
add_subdirectory("tests")
endif(TESTS)
########## data generator ########
if(GENERATE_DATA)
add_executable(generate_ls_coeff utils/generator.cpp)
target_link_libraries(generate_ls_coeff catima)
#add_custom_command(
# OUTPUT ${CMAKE_CURRENT_BINARY_DIR/include/generated_LS_coeff.h}
2019-10-22 13:34:09 -04:00
# COMMAND
2017-07-25 12:19:11 -04:00
#)
endif(GENERATE_DATA)
####### DOCS generation #########
if(DOCS)
find_package(Doxygen REQUIRED)
if(DOXYGEN_FOUND)
2019-10-22 13:34:09 -04:00
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/docs/doxygen.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
add_custom_target(docs
2017-07-25 12:19:11 -04:00
COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile COMMENT "Generating API documentation with Doxygen" VERBATIM )
endif(DOXYGEN_FOUND)
endif(DOCS)
2018-04-12 19:12:45 -04:00
###### subdirectories ######
if(APPS)
add_subdirectory("bin")
endif(APPS)
2017-07-25 12:19:11 -04:00
####### install part #######
FILE(GLOB headers "*.h")
2018-04-17 19:19:29 -04:00
include(GNUInstallDirs)
2018-10-21 16:08:16 -04:00
install (TARGETS catima
2018-04-17 19:19:29 -04:00
EXPORT catimaConfig
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
2019-10-22 13:34:09 -04:00
2017-07-25 12:19:11 -04:00
install (FILES ${headers} DESTINATION include/catima)
2018-04-17 19:19:29 -04:00
install(EXPORT catimaConfig
NAMESPACE catima::
DESTINATION lib/cmake/catima
)
2019-10-22 13:34:09 -04:00
2018-10-21 16:08:16 -04:00
export(TARGETS catima NAMESPACE catima:: FILE catimaConfig.cmake)
2018-04-17 19:19:29 -04:00
export(PACKAGE catima)
2017-07-25 12:19:11 -04:00
###### packaging #######
set(CPACK_PACKAGE_NAME "catima")
set(CPACK_PACKAGE_VENDOR "A. Prochazka")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "")
set(CPACK_PACKAGE_VERSION "1.0.0")
set(CPACK_PACKAGE_VERSION_MAJOR "1")
set(CPACK_PACKAGE_VERSION_MINOR "0")
set(CPACK_PACKAGE_VERSION_PATCH "0")
set(CPACK_PACKAGE_INSTALL_DIRECTORY "catima")
include(CPack)