-
Notifications
You must be signed in to change notification settings - Fork 19
/
CMakeLists.txt
106 lines (90 loc) · 3.31 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
# The target of the PENF library is exported
# as PENF::PENF to a package configuration file for this library
#
# usage:
# find_package(PENF)/add_subdirectory(...)
# ...
# target_link_library(<target> PENF::PENF)
#
# the config file is generatet in the build and install directories
#
# to build the documentation build the target doc (ford is needed)
#
# to build the tests enable the option BUILD_TESTING (PENF_BUILD_TESTING)
# if this is the main project (a subproject)
# afterwards they can be run with ctest
cmake_minimum_required(VERSION 3.14...3.15)
project(PENF VERSION 1.2.1 LANGUAGES Fortran)
# set export variables needed in subdirectories
set(TARGETS_EXPORT_NAME "${PROJECT_NAME}-targets")
set(NAMESPACE "${PROJECT_NAME}::")
# generate the library and install instructions
add_subdirectory(src/lib)
add_subdirectory(doc EXCLUDE_FROM_ALL)
# testing
if(${PROJECT_SOURCE_DIR} STREQUAL ${CMAKE_SOURCE_DIR})
set(main_project TRUE)
option(BUILD_TESTING "Build the testing tree." OFF)
else()
set(main_project FALSE)
# if this is not the main project but BUILD_TESTIG is set to TRUE
# the tests for this project can be enabled by also setting
# BUILD_TESTING_${PROJECT_NAME} to TRUE
include(CMakeDependentOption)
cmake_dependent_option(BUILD_TESTING_${PROJECT_NAME}
"Build the testing tree for project ${PROJECT_NAME}." OFF
"BUILD_TESTING;NOT main_project" OFF
)
endif()
if((main_project OR BUILD_TESTING_${PROJECT_NAME}) AND BUILD_TESTING)
enable_testing()
add_subdirectory(src/tests)
endif()
# generate package config files
include(GNUInstallDirs)
set(project_config "${PROJECT_NAME}-config.cmake")
set(project_config_version "${PROJECT_NAME}-config-version.cmake")
set(cmake_files_dir "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles")
set(default_config_install_dir "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}")
set(config_build_dir "${CMAKE_CURRENT_BINARY_DIR}/${default_config_install_dir}")
set(${PROJECT_NAME}_INSTALL_CMAKEDIR ${default_config_install_dir} CACHE PATH "Path into which the cmake files for project ${PROJECT_NAME} will be installed.")
# export targets for install
install(EXPORT ${TARGETS_EXPORT_NAME}
NAMESPACE
${NAMESPACE}
DESTINATION
${${PROJECT_NAME}_INSTALL_CMAKEDIR}
COMPONENT
${PROJECT_NAME}_Development
)
# export targets into build
export(EXPORT ${TARGETS_EXPORT_NAME}
NAMESPACE
${NAMESPACE}
FILE
"${config_build_dir}/${TARGETS_EXPORT_NAME}.cmake"
)
# create package config
# Variables needed by PackageConfig.cmake.in: PROJECT_NAME, TARGETS_EXPORT_NAME
include(CMakePackageConfigHelpers)
configure_package_config_file(cmake/PackageConfig.cmake.in "${cmake_files_dir}/${project_config}"
INSTALL_DESTINATION ${${PROJECT_NAME}_INSTALL_CMAKEDIR}
)
configure_package_config_file(cmake/PackageConfig.cmake.in "${config_build_dir}/${project_config}"
INSTALL_DESTINATION ${config_build_dir}
INSTALL_PREFIX ${CMAKE_CURRENT_BINARY_DIR}
)
write_basic_package_version_file(
${project_config_version}
VERSION ${PROJECT_VERSION}
COMPATIBILITY SameMajorVersion
)
install(
FILES
"${cmake_files_dir}/${project_config}"
"${CMAKE_CURRENT_BINARY_DIR}/${project_config_version}"
DESTINATION
${${PROJECT_NAME}_INSTALL_CMAKEDIR}
COMPONENT
${PROJECT_NAME}_Development
)