-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathCMakeLists.txt
91 lines (72 loc) · 2.89 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
#===============================================================================
#
# Copyright (C) 2016-2019 Istituto Italiano di Tecnologia (IIT)
#
# This software may be modified and distributed under the terms of the
# BSD 3-Clause license. See the accompanying LICENSE file for details.
#
#===============================================================================
cmake_minimum_required(VERSION 3.5)
project(BayesFilters
LANGUAGES CXX
VERSION 0.10.0)
set(CMAKE_CXX_STANDARD 11)
include(GNUInstallDirs)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}")
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}")
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}")
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
set(CMAKE_C_EXTENSIONS OFF)
set(CMAKE_CXX_EXTENSIONS OFF)
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
if(WIN32)
add_definitions(-D_USE_MATH_DEFINES)
if(MSVC)
set(CMAKE_DEBUG_POSTFIX "d")
set(CMAKE_CXX_FLAGS "/MP /EHsc")
set(CMAKE_C_FLAGS "/MP /EHsc")
endif()
endif()
add_definitions(-DEIGEN_INITIALIZE_MATRICES_BY_ZERO)
### Options
option(BUILD_SHARED_LIBS "Build libraries as shared as opposed to static" ON)
# Build tests?
option(BUILD_TESTING "Create tests using CMake" OFF)
if(BUILD_TESTING)
message(STATUS "Test enabled")
enable_testing()
endif()
# Enable RPATH?
include(AddInstallRPATHSupport)
add_install_rpath_support(BIN_DIRS "${CMAKE_INSTALL_FULL_BINDIR}"
LIB_DIRS "${CMAKE_INSTALL_FULL_LIBDIR}"
INSTALL_NAME_DIR "${CMAKE_INSTALL_FULL_LIBDIR}"
USE_LINK_PATH)
# Default build type to Release
if(NOT CMAKE_CONFIGURATION_TYPES)
if(NOT CMAKE_BUILD_TYPE)
message(STATUS "Setting build type to 'Release' as none was specified.")
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY VALUE "Release")
endif()
endif()
### Compile- and install-related commands
add_subdirectory(src)
# Install the files necessary to call find_package(BayesFilters) in CMake projects
include(InstallBasicPackageFiles)
install_basic_package_files(${PROJECT_NAME}
VERSION ${${PROJECT_NAME}_VERSION}
COMPATIBILITY ExactVersion
TARGETS_PROPERTY ${PROJECT_NAME}_TARGETS
NO_SET_AND_CHECK_MACRO
VARS_PREFIX ${PROJECT_NAME}
NO_CHECK_REQUIRED_COMPONENTS_MACRO
DEPENDENCIES Threads)
# Add the uninstall target
include(AddUninstallTarget)
# Add integration tests (unit tests for each library should be in each sublibrary directory)
if(BUILD_TESTING)
add_subdirectory(test)
endif()
# Add targets related to doxygen documention generation
add_subdirectory(doc)