-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathCMakeLists.txt
79 lines (66 loc) · 3.52 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
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.8 LANGUAGES CXX)
set (IBEX_DESCRIPTION "A C++ library for interval-based algorithm design")
set (IBEX_URL "http://www.ibex-lib.org/")
################################################################################
# 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 and install the module so plugins can use it
################################################################################
message (STATUS "Configuring Ibex ${IBEX_VERSION}")
include (ibex-config-utils)
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 (IbexUtils)
ibex_generate_pkgconfig_file (ibex)
################################################################################
# Tests
################################################################################
add_make_target_for_ctest (check)
################################################################################
# TODO benchs
################################################################################
#add_subdirectory (benchs)
################################################################################
# We add this file last in the hope that the install script will run it last.
# Specifically, we want this to be run after the line
# install (EXPORT ibex...
# from src/CMakeLists.txt because this line can, in some cases, remove files
# matching ${CMAKE_INSTALL_CONFIGCMAKE}/ibex-config-*.cmake even if they were
# just installed.
################################################################################
add_subdirectory (cmake.install)
################################################################################
# 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)