-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
246 lines (212 loc) · 6.73 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# Copyright 2013 Telefonica Investigacion y Desarrollo, S.A.U
#
# This file is part of Orion Context Broker.
#
# Orion Context Broker is free software: you can redistribute it and/or
# modify it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# Orion Context Broker is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
# General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Orion Context Broker. If not, see http://www.gnu.org/licenses/.
#
# For those usages not covered by this license please contact with
# iot_support at tid dot es
#
# Project name and basic prerequisities
#
PROJECT(contextBroker)
cmake_minimum_required(VERSION 2.6)
#
# DEBUG or RELEASE build ?
#
if (NOT CMAKE_BUILD_TYPE)
MESSAGE("CMAKE_BUILD_TYPE not set - setting it to RELEASE")
SET (CMAKE_BUILD_TYPE "RELEASE")
else (NOT CMAKE_BUILD_TYPE)
MESSAGE("CMAKE_BUILD_TYPE set to ${CMAKE_BUILD_TYPE}")
endif (NOT CMAKE_BUILD_TYPE)
set(error 0)
execute_process(COMMAND echo $USER
COMMAND tr 'a-z' 'A-Z'
OUTPUT_VARIABLE USER)
execute_process(COMMAND sh ../scripts/build/osDistro.sh
OUTPUT_VARIABLE DISTRO)
# TRACES: To remove LM_T
# [ and 15 log macros more, of which only LM_T is used by the broker.
# The important ones: LM_W, LM_E, LM_X, LM_I are all kept as is ]
# comment the following line
add_definitions(-DLM_ON)
add_definitions(-fPIC)
# Baseline compiler flags, any change here will affect all build types
#set (CMAKE_CXX_FLAGS "-Wall -Wno-unknown-pragmas -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -Werror")
set (CMAKE_CXX_FLAGS "-Wall -Wno-unknown-pragmas -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -Werror -fno-var-tracking-assignments")
#
# Platform checks
#
MESSAGE( "Compiling in system ${CMAKE_SYSTEM}")
IF (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
ADD_DEFINITIONS(-DLINUX)
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DLINUX")
ENDIF (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
MESSAGE("CMAKE_BUILD_TYPE: '${CMAKE_BUILD_TYPE}'")
if (${CMAKE_BUILD_TYPE} STREQUAL DEBUG)
MESSAGE("cmake: DEBUG compilation")
add_definitions(-DDEBUG -DDEBUG_$ENV{USER} -DDEBUG_${USER})
#
# Note that stack protection is activated only in debug compilation.
# This is due that this directive makes the compiler introduce code at the beginning/end of each functions,
# so it has a pretty big impact on performance
#
# Our unit tests don't pass the compilation with "stack protection", so we turn it off using
# remove_definitions().
#
add_definitions(-fstack-check -fstack-protector)
if (COVERAGE)
MESSAGE("cmake: Coverage compilation")
# LM_T macros introduce condition branchs which are not never traversed. Removing LM_T macros doesn't have
# any impact in line coverage but removes "noise" in condition coverage, thus making coverage reports more useful
remove_definitions(-DLM_ON)
# Removing LM_T macros make that some variables get unused, thus -Wno-unused-variable have to be used
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-variable -fprofile-arcs -ftest-coverage")
set (CMAKE_EXE_LINKER_FLAGS "-fprofile-arcs -ftest-coverage")
endif (COVERAGE)
if (UNIT_TEST)
add_definitions( -DUNIT_TEST )
endif (UNIT_TEST)
else (${CMAKE_BUILD_TYPE} STREQUAL DEBUG)
MESSAGE("cmake: RELEASE compilation")
if (STRICT)
MESSAGE("cmake: Strict compilation")
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wextra")
endif (STRICT)
endif (${CMAKE_BUILD_TYPE} STREQUAL DEBUG)
# -Wunused-but-set-variable is available from gcc 4.6.0 but can be set in 4.5.x
# OS X comes with gcc 4.2.1 (10.7) and does not accept this flag
#
# no-unused-but-set-variable (commented, not active):
# if the following piece of 'compiler directives' is uncommented, we no longer get warnings for
# variables that are defined but not used.
# For now we want these warnings as we desire as strict compilaton as possible.
#
#if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
# set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-but-set-variable")
#endif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
#
# Libraries
#
SET (ORION_LIBS
common
serviceRoutines
serviceRoutinesV2
ngsiNotify
rest
jsonParse
jsonParseV2
apiTypesV2
convenience
ngsi9
ngsi10
ngsi
cache
mongoBackend
parse
orionTypes
common
alarmMgr
logSummary
lm
pa
)
SET (BOOST
boost_thread
boost_filesystem
boost_system
boost_regex
)
SET (BOOST_MT
boost_thread-mt
boost_filesystem-mt
boost_system-mt
boost_regex-mt
)
# Static libs common to contextBroker and unitTest binaries
SET (COMMON_STATIC_LIBS
microhttpd.a
mongoclient.a
)
SET (DYNAMIC_LIBS
curl
gnutls
pthread
gcrypt
uuid
)
#
# Enabling testing
#
if (UNIT_TEST)
ENABLE_TESTING()
INCLUDE(Dart)
SET (CMAKE_TEST_TIMEOUT 60)
SET (DART_TIMEOUT 60)
ADD_SUBDIRECTORY(test)
endif (UNIT_TEST)
#
# Common include
#
include_directories("/usr/include")
#
# Library directories
#
MESSAGE("Building for ${BUILD_ARCH}")
if ("${BUILD_ARCH}" STREQUAL "x86_64")
link_directories("/usr/lib64")
else (NOT "${BUILD_ARCH}" STREQUAL "x86_64")
link_directories("/usr/lib")
endif ("${BUILD_ARCH}" STREQUAL "x86_64")
link_directories("/usr/lib/x86_64-linux-gnu")
#
# Enabling test harness
#
if (UNIT_TEST)
ENABLE_TESTING()
INCLUDE(Dart)
SET (CMAKE_TEST_TIMEOUT 60)
SET (DART_TIMEOUT 60)
#ADD_SUBDIRECTORY(test/harness)
endif (UNIT_TEST)
#
# Continuing if OK
#
if (error EQUAL 0)
MESSAGE("cmake: OK")
ADD_SUBDIRECTORY(src/lib/logMsg)
ADD_SUBDIRECTORY(src/lib/parseArgs)
ADD_SUBDIRECTORY(src/lib/common)
ADD_SUBDIRECTORY(src/lib/orionTypes)
ADD_SUBDIRECTORY(src/lib/ngsi)
ADD_SUBDIRECTORY(src/lib/serviceRoutines)
ADD_SUBDIRECTORY(src/lib/serviceRoutinesV2)
ADD_SUBDIRECTORY(src/lib/convenience)
ADD_SUBDIRECTORY(src/lib/ngsi9)
ADD_SUBDIRECTORY(src/lib/ngsi10)
ADD_SUBDIRECTORY(src/lib/ngsiNotify)
ADD_SUBDIRECTORY(src/lib/apiTypesV2)
ADD_SUBDIRECTORY(src/lib/parse)
ADD_SUBDIRECTORY(src/lib/jsonParse)
ADD_SUBDIRECTORY(src/lib/jsonParseV2)
ADD_SUBDIRECTORY(src/lib/rest)
ADD_SUBDIRECTORY(src/lib/mongoBackend)
ADD_SUBDIRECTORY(src/lib/cache)
ADD_SUBDIRECTORY(src/lib/alarmMgr)
ADD_SUBDIRECTORY(src/lib/logSummary)
ADD_SUBDIRECTORY(src/app/contextBroker)
else ()
MESSAGE("cmake: NOT OK")
endif (error EQUAL 0)