-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
81 lines (68 loc) · 3.67 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
cmake_minimum_required (VERSION 3.5.1)
# CMake doc can be found at https://cmake.org/cmake/help/v3.5/
message (WARNING "CMake support is in beta, please report all bugs to https://github.com/ibex-team/ibex-lib/issues/")
project (IBEX VERSION 2.8.9.1 LANGUAGES CXX)
set (IBEX_DESCRIPTION "A C++ library for interval-based algorithm design")
set (IBEX_URL "http://www.ibex-lib.org/")
set (IBEX_NAMESPACE "Ibex") # TODO use it everywhere
set (IBEX_CMAKE_PATH_FILES_PREFIX ibex-path-hints)
################################################################################
# Add cmake.utils to the list of CMAKE_MODULE_PATH
################################################################################
set (MODULE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/cmake.utils")
list (APPEND CMAKE_MODULE_PATH "${MODULE_DIR}")
################################################################################
# Run common init function (the module is installed later so plugins can use it)
################################################################################
message (STATUS "Configuring Ibex ${IBEX_VERSION}")
set (IBEX_DEV_UTILS_FILENAME ibex-dev-utils)
include (${IBEX_DEV_UTILS_FILENAME})
ibex_init_common ()
################################################################################
# Configure the libraries for interval arithmetic and linear programming
################################################################################
add_subdirectory (interval_lib_wrapper)
add_subdirectory (lp_lib_wrapper)
################################################################################
# Go to src subdirectory that builds the libibex target
################################################################################
add_subdirectory (src)
################################################################################
# Generate ibex.pc
################################################################################
include (ibex-gen-pkgconfig)
ibex_generate_pkgconfig_file (ibex)
################################################################################
# Install some CMake utils files that are use for detecting dependencies in
# cmake-config.cmake module and can be useful in plugins.
################################################################################
install (FILES "${MODULE_DIR}/${IBEX_DEV_UTILS_FILENAME}.cmake"
"${MODULE_DIR}/FindCppUnit.cmake"
DESTINATION ${CMAKE_INSTALL_CONFIGCMAKE}/cmake.utils
COMPONENT devtools)
################################################################################
# Tests
################################################################################
ibex_add_make_target_for_ctest (check)
################################################################################
# TODO benchs
################################################################################
#add_subdirectory (benchs)
################################################################################
# archives and packages
################################################################################
if (CMAKE_HOST_SYSTEM_NAME EQUAL "Linux")
set (CPACK_GENERATOR "TGZ" "ZIP" "DEB")
else ()
set (CPACK_GENERATOR "TGZ" "ZIP")
endif ()
string (TOLOWER "${CMAKE_PROJECT_NAME}" CPACK_PACKAGE_NAME)
set (CPACK_PACKAGE_VENDOR "IbexTeam")
set (CPACK_PACKAGE_DESCRIPTION_SUMMARY ${IBEX_DESCRIPTION})
set (CPACK_PACKAGE_VERSION_MAJOR ${PROJECT_VERSION_MAJOR})
set (CPACK_PACKAGE_VERSION_MINOR ${PROJECT_VERSION_MINOR})
set (CPACK_PACKAGE_VERSION_PATCH ${PROJECT_VERSION_PATCH})
set (CPACK_PACKAGE_CONTACT "Maintainer <[email protected]>") # TODO which email ?
set (CPACK_DEBIAN_PACKAGE_HOMEPAGE ${IBEX_URL})
set (CPACK_DEB_COMPONENT_INSTALL ON)
Include (CPack)