forked from roboception/rcdiscover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
182 lines (146 loc) · 7.11 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# rcdiscover - the network discovery tool for rc_visard
#
# Copyright (c) 2017 Roboception GmbH
# All rights reserved
#
# Author: Heiko Hirschmueller
#
# 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 2.8.12)
# Don't set PROJECT_VERSION to empty string when no VERSION is given to project() command.
if(POLICY CMP0048)
cmake_policy(SET CMP0048 OLD)
endif()
project(rcdiscover)
include(cmake/project_version.cmake)
enable_testing()
include_directories(${CMAKE_SOURCE_DIR})
# - Find manditory packages -
set(wxWidgets_USE_STATIC ON)
set(wxWidgets_USE_UNICODE ON)
find_package(wxWidgets COMPONENTS html adv core base)
if(wxWidgets_FOUND)
include(${wxWidgets_USE_FILE})
endif(wxWidgets_FOUND)
# - 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 -
if (CMAKE_COMPILER_IS_GNUCC)
add_definitions(-Wall)
endif ()
add_definitions(-std=c++11)
# - Build individual parts -
if (WIN32)
add_definitions(-DWIN32)
set(CMAKE_C_FLAGS "-mtune=generic -mno-abm")
set(CMAKE_CXX_FLAGS "-mtune=generic -mno-abm")
set(CMAKE_CXX_FLAGS_DEBUG "-O0")
set(CMAKE_CXX_FLAGS_RELEASE "-O2")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static-libgcc -static-libstdc++ -static")
endif ()
add_subdirectory(rcdiscover)
# by default install commandline and gui tools
option(INSTALL_RCDISCOVER_CLI "install rcdiscover commandline tool" ON)
option(INSTALL_RCDISCOVER_GUI "install rcdiscover-gui GUI tool" ON)
if (UNIX)
# workaround to build two debian packages: rcdiscover and rcdiscover-gui:
# - building package without extra cmake options builds one debian package with everything
# - building package with -DRCDISCOVER_CLI_ONLY_DEB=ON builds rcdiscover-cli package only with cmdline tool
# - building package with -DRCDISCOVER_GUI_ONLY_DEB=ON will build the rcdiscover-gui deb which recommends rcdiscover-cli
option(RCDISCOVER_CLI_ONLY_DEB "build debian package 'rcdiscover' with only cmdline tool" OFF)
option(RCDISCOVER_GUI_ONLY_DEB "build debian package 'rcdiscover-gui' with only gui tool" OFF)
if (RCDISCOVER_CLI_ONLY_DEB AND RCDISCOVER_GUI_ONLY_DEB)
message(FATAL_ERROR "Can't enable RCDISCOVER_CLI_ONLY_DEB and RCDISCOVER_GUI_ONLY_DEB at the same time!")
endif ()
if (RCDISCOVER_CLI_ONLY_DEB)
# build the rcdiscover debian package
# force installing of only the cmdline tool
set(INSTALL_RCDISCOVER_CLI ON CACHE BOOL "Override option" FORCE)
set(INSTALL_RCDISCOVER_GUI OFF CACHE BOOL "Override option" FORCE)
endif()
if (RCDISCOVER_GUI_ONLY_DEB)
# build rcdiscover-gui debian package
# force installing of only gui tool
set(INSTALL_RCDISCOVER_CLI OFF CACHE BOOL "Override option" FORCE)
set(INSTALL_RCDISCOVER_GUI ON CACHE BOOL "Override option" FORCE)
endif ()
endif ()
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 rcXXX)
# 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 rcdiscover_static)
# comment the following line if your project does not provide any library
#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 package description")
# optionally set package maintainer (otherwise defaults to Roboception <[email protected]>)
#set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Your Name <[email protected]>")
if (RCDISCOVER_GUI_ONLY_DEB)
set(CPACK_PACKAGE_NAME "rcdiscover-gui")
set(CPACK_DEBIAN_PACKAGE_RECOMMENDS "rcdiscover-cli")
set(CPACK_DEBIAN_PACKAGE_CONFLICTS "rcdiscover")
endif ()
if (RCDISCOVER_CLI_ONLY_DEB)
set(CPACK_PACKAGE_NAME "rcdiscover-cli")
set(CPACK_DEBIAN_PACKAGE_CONFLICTS "rcdiscover")
endif ()
# don't install rpfilter sysctl for gui package (would conflict with cli package)
if (UNIX AND NOT RCDISCOVER_GUI_ONLY_DEB)
# install example sysctl config to disable reverse path filtering
install(FILES debian/50-rcdiscover-rpfilter.conf DESTINATION ${CMAKE_INSTALL_PREFIX}/share/rcdiscover)
# ask if this config should be applied when installing this as debian package
set(CONFIG_FILE "${PROJECT_BINARY_DIR}/config")
set(POSTINST_FILE "${PROJECT_BINARY_DIR}/postinst")
set(POSTRM_FILE "${PROJECT_BINARY_DIR}/postrm")
set(TEMPLATES_FILE "${PROJECT_BINARY_DIR}/templates")
configure_file(${PROJECT_SOURCE_DIR}/debian/config.in ${CONFIG_FILE})
configure_file(${PROJECT_SOURCE_DIR}/debian/postinst.in ${POSTINST_FILE})
configure_file(${PROJECT_SOURCE_DIR}/debian/postrm.in ${POSTRM_FILE})
configure_file(${PROJECT_SOURCE_DIR}/debian/templates.in ${TEMPLATES_FILE})
execute_process(COMMAND chmod 755 "${CONFIG_FILE}")
execute_process(COMMAND chmod 755 "${POSTINST_FILE}")
execute_process(COMMAND chmod 755 "${POSTRM_FILE}")
execute_process(COMMAND chmod 644 "${TEMPLATES_FILE}")
set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${POSTINST_FILE};${POSTRM_FILE};${TEMPLATES_FILE};${CONFIG_FILE}")
# optionally specify dependencies of the debian package here (comma separated!)
set(CPACK_DEBIAN_PACKAGE_DEPENDS "debconf")
endif ()
include(cmake/package_debian.cmake)