-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
131 lines (102 loc) · 4.53 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
124
125
126
127
128
129
130
131
# This file is part of the rc_visard_opencv_example package.
#
# Copyright (c) 2018 Roboception GmbH
# All rights reserved
#
# Author: Raphael Schaller
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. 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.
#
# 3. Neither the name of the copyright holder 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 HOLDER 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 3.1.0)
project(rc_visard_opencv_example)
include(cmake/project_version.cmake)
include(GNUInstallDirs)
enable_testing()
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
# - Configuration for code optimization -
if (NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE RELEASE CACHE STRING "Build type: DEBUG or RELEASE" FORCE)
endif ()
# - Standard definitions -
add_definitions(-Wall)
# In case of Visual Studio, enable exporting all symbols and disable some
# warnings
if (WIN32)
add_definitions(/DGENICAM_NO_AUTO_IMPLIB)
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE)
endif ()
if (MSVC)
add_definitions("/wd4003")
add_definitions("/wd4514")
add_definitions("/wd4710")
add_definitions("/wd4820")
add_definitions("/wd4435")
add_definitions("/wd4668")
add_definitions("/wd4127")
add_definitions("/wd4265")
add_definitions("/wd4996")
add_definitions("/wd4437")
add_definitions("/wd4571")
add_definitions("/wd4355")
add_definitions("/wd4061")
add_definitions("/wd4800")
add_definitions("/wd4711")
endif ()
# - Build individual parts -
add_subdirectory(rc_visard_opencv_example)
add_subdirectory(tools)
# export project targets
# ??? Declare (shared) libraries that are created by your project. For all
# libraries that appear here, the following line should exist in a cmake
# file in a sub directory:
# install(TARGETS rcXXX EXPORT PROJECTTargets COMPONENT bin DESTINATION lib)
set(PROJECT_LIBRARIES ${PROJECT_NAME})
# ??? Declare static libraries that are created by your project. For all
# libraries that appear here, the following line should exist in a cmake
# file in a sub directory:
# install(TARGETS rcXXX_static EXPORT PROJECTTargets COMPONENT dev DESTINATION lib)
# set(PROJECT_STATIC_LIBRARIES rcXXX_static)
# ??? install generated version.h file
# the destination path might have to be adjusted for your project
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/project_version.h COMPONENT dev DESTINATION include/${PROJECT_NAME})
include(cmake/configure_link_libs.cmake)
# add a target to generate API documentation with Doxygen
add_subdirectory(doc)
# - Define information for packaging -
# optionally set description and maintainer (if not set will use defaults from package_debian.cmake)
set(CPACK_DEBIAN_PACKAGE_DESCRIPTION "Roboception rc_visard OpenCV example")
# optionally set package maintainer (otherwise defaults to Roboception <[email protected]>)
#set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Your Name <[email protected]>")
# optionally specify dependencies of the debian package here (comma separated!)
#set(CPACK_DEBIAN_PACKAGE_DEPENDS "cvkit (>= 1.7.0)")
set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS OFF)
add_custom_target(gen_deps)
add_custom_command(TARGET gen_deps POST_BUILD
COMMAND ${CMAKE_COMMAND}
ARGS -D BINARY_DIR=${CMAKE_BINARY_DIR}
-P ${CMAKE_SOURCE_DIR}/cmake/add_target_dependencies.cmake
COMMENT "Generating dependency list" VERBATIM)
include(cmake/package_debian.cmake)