forked from plasmodic/ecto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
123 lines (102 loc) · 4.18 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#
# Copyright (c) 2011, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the Willow Garage, Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
cmake_minimum_required(VERSION 2.8)
project(ecto)
find_package(catkin REQUIRED)
catkin_stack()
# configure and install Python
catkin_python_setup()
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(${PROJECT_NAME}_GITHUB_URL https://github.com/plasmodic/ecto)
option(ECTO_TRACE_EXCEPTIONS "Trace ecto exceptions to stdout" OFF)
option(ECTO_STRESS_TEST "Stress testing of ecto" OFF)
if(ECTO_STRESS_TEST)
message("ECTO_STRESS_TEST is ON")
endif()
if (CMAKE_BUILD_TYPE STREQUAL "Debug")
option(ECTO_LOGGING "Ecto logging" ON)
else()
option(ECTO_LOGGING "Ecto logging" OFF)
endif()
option(ECTO_WITH_INSTRUMENTATION "Instrument schedulers (for debugging)" OFF)
#set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
#set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
list(APPEND CMAKE_MODULE_PATH ${ecto_SOURCE_DIR}/cmake)
include(cmake/ros_electric.cmake)
#include(cmake/buildtype.cmake)
include(cmake/version.cmake)
include(cmake/git.cmake)
include(cmake/ectoMacros.cmake)
include(cmake/boost.cmake)
include(cmake/ectoFindDeps.cmake)
include(cmake/config.cmake)
include(cmake/doc.cmake)
set_ecto_install_package_name(ecto)
git_status(ecto)
include_directories(include)
include_directories(src/lib)
include_directories(${CMAKE_BINARY_DIR}/gen/cpp/)
install(DIRECTORY ${CMAKE_BINARY_DIR}/gen/cpp/ecto/
DESTINATION include/ecto
COMPONENT main
)
add_subdirectory(src)
add_subdirectory(cmake)
add_subdirectory(python)
set(ecto_SPHINX_DIR ${CMAKE_CURRENT_SOURCE_DIR}/python/ecto/sphinx)
ecto_sphinx(${CMAKE_CURRENT_SOURCE_DIR}/doc/kitchen)
option(BUILD_DOC "Build docs, this will build tests and samples as well." ON)
if(BUILD_DOC)
set(BUILD_TEST ON CACHE BOOL "Tests must be built if docs are expected to build." FORCE)
set(BUILD_SAMPLES ON CACHE BOOL "Samples must be built if docs are expected to build." FORCE)
add_subdirectory(doc)
find_package(catkin-sphinx QUIET)
if (catkin-sphinx_FOUND)
catkin_sphinx(${CMAKE_CURRENT_SOURCE_DIR}/doc/source doc
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/samples
)
endif()
endif()
option(BUILD_TEST "Build tests" ON)
if(BUILD_TEST)
enable_testing()
add_subdirectory(test)
endif()
option(BUILD_SAMPLES "Build samples." ON)
if(BUILD_SAMPLES)
add_subdirectory(samples)
endif()
catkin_project(ecto INCLUDE_DIRS include
LIBRARIES ecto
DEPENDS PythonLibs
CFG_EXTRAS ecto-extras.cmake
)
catkin_doxygen(ecto-doxygen ${CMAKE_CURRENT_SOURCE_DIR}/include)