-
Notifications
You must be signed in to change notification settings - Fork 123
/
CMakeLists.txt
346 lines (303 loc) · 11.6 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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
# -*- mode: cmake; -*-
project(vzlogger)
cmake_minimum_required(VERSION 2.6.2 FATAL_ERROR)
if(POLICY CMP0011)
cmake_policy(SET CMP0011 NEW)
endif(POLICY CMP0011)
# Supress a warning for if(GTest_FOUND)
IF(POLICY CMP0012)
CMAKE_POLICY(SET CMP0012 NEW)
ENDIF()
set(VZLOGGER_MAJOR_VERSION 0)
set(VZLOGGER_MINOR_VERSION 8)
set(VZLOGGER_SUB_VERSION 8)
set(VERSION_SEP "-")
set(VZLOGGER_SHORT_VERSION "${VZLOGGER_MAJOR_VERSION}${VERSION_SEP}${VZLOGGER_MINOR_VERSION}")
set(VZLOGGER_VERSION "${VZLOGGER_SHORT_VERSION}${VERSION_SEP}${VZLOGGER_SUB_VERSION}")
set(VZLOGGER_RPM_VERSION "${VZLOGGER_MAJOR_VERSION}.${VZLOGGER_MINOR_VERSION}.${VZLOGGER_SUB_VERSION}")
set(VERSION_DATE "2018-08-04")
set(PACKAGE_STRING "${PROJECT_NAME} ${VZLOGGER_RPM_VERSION}")
set(VERSION "${VZLOGGER_RPM_VERSION}")
set(CMAKE_VERBOSE_MAKEFILE 1)
# debug build, on by default
ADD_DEFINITIONS(-g3)
###########################################################
# Where are the additional libraries installed? Note: provide includes
# path here, subsequent checks will resolve everything else
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/modules")
# get git sha1 as additional version:
include(GetGitRevisionDescription)
get_git_head_revision(GIT_REFSPEC GIT_SHA1)
git_describe(GIT_SHALONG --always --abbrev=10 --long --all --dirty )
git_get_last_commit_date(GIT_LAST_COMMIT_DATE )
message("Compiling for target '${TARGET}'")
if( TARGET )
if( ${TARGET} STREQUAL "ar71xx")
include ( OpenWRT )
message("Compiling for ar71xx")
set(CMAKE_FIND_LIBRARY_SUFFIXES ".a")
set(LINK_FLAGS_RELEASE "-static")
endif( ${TARGET} STREQUAL "ar71xx")
else( TARGET )
include ( CompilerFlags )
endif( TARGET )
include ( ConfigureMacro )
# options
OPTION(ENABLE_SML
"enable support for smart messaging language (def=yes)])"
On)
OPTION(ENABLE_OMS
"enable support for OMS (M-Bus) based devices (def=yes)"
On)
OPTION(ENABLE_LOCAL
"enable support for local HTTPd (def=yes)]"
On)
OPTION(ENABLE_MQTT
"enable MQTT client support (def=yes)"
On)
OPTION(WITH_READER
"compile reader to for testing your meters (def=yes)])"
On)
OPTION(ENABLE_OCR
"enable support for OCR image/processing meter (def=off)"
OFF)
OPTION(ENABLE_OCR_TESSERACT
"enable support for OCR text recognition meter (def=off)"
OFF)
OPTION(METEREXEC_ROOTACCESS
"compile MeterExec protocol to use root privileges for script calls (def=no)])"
Off)
OPTION(BUILD_TEST
"build unit tests (def=on)])"
On)
# find dependencies
# libsml
if( ENABLE_SML )
include(FindSML)
if(SML_FOUND)
set(SML_SUPPORT 1)
include_directories(${SML_INCLUDE_DIR})
endif(SML_FOUND)
endif( ENABLE_SML )
if( ENABLE_OMS )
# find dependencies todo libmbus
include(FindMBus)
include(FindOpenSSL)
if(MBUS_FOUND)
set(OMS_SUPPORT 1)
include_directories(${MBUS_INCLUDE_DIR})
set(OMS_LIBRARIES ${MBUS_LIBRARY})
elseif(MBUS_FOUND)
set(OMS_SUPPORT 0)
message( STATUS "libmbus not found. Disabling ENABLE_OMS" )
endif(MBUS_FOUND)
endif( ENABLE_OMS )
if(ENABLE_LOCAL)
include(FindMicroHttpd)
if(MICROHTTPD_FOUND)
set(MICROHTTPD_SUPPORT 1)
set(LOCAL_SUPPORT 1)
endif(MICROHTTPD_FOUND)
endif(ENABLE_LOCAL)
if(ENABLE_MQTT)
find_library(MQTT_LIBRARY mosquitto)
find_path(MQTT_INCLUDE_DIR mosquitto.h)
message( STATUS "search for libmosquitto returned ${MQTT_LIBRARY} and ${MQTT_INCLUDE_DIR}")
if(MQTT_LIBRARY AND MQTT_INCLUDE_DIR)
message( STATUS "libmosquitto found at ${MQTT_LIBRARY}")
include_directories(${MQTT_INCLUDE_DIR})
else()
set(ENABLE_MQTT OFF)
message( WARNING "libmosquitto not found. Disabled ENABLE_MQTT. Consider installing libmosquitto-dev package.")
endif(MQTT_LIBRARY AND MQTT_INCLUDE_DIR)
else()
message( STATUS "MQTT support disabled. If wanted use ENABLE_MQTT=On")
endif(ENABLE_MQTT)
if( ENABLE_OCR OR ENABLE_OCR_TESSERACT )
include(FindLeptonica)
if (NOT LEPTONICA_FOUND)
message( STATUS "Leptonica not found. Disabling ENABLE_OCR" )
set(ENABLE_OCR false)
set(ENABLE_OCR_TESSERACT false)
else ()
message("OCR Meter enabled")
# TODO install tesseract
# and set include_directories appropriate
if (ENABLE_OCR_TESSERACT)
set(OCR_LIBRARIES ${LEPTONICA_LIBRARIES} tesseract)
set(OCR_TESSERACT_SUPPORT 1)
else ()
set( OCR_LIBRARIES ${LEPTONICA_LIBRARIES})
endif( ENABLE_OCR_TESSERACT)
include_directories(${LEPTONICA_INCLUDE_DIRS})
set(OCR_SUPPORT 1)
endif( NOT LEPTONICA_FOUND )
endif( ENABLE_OCR OR ENABLE_OCR_TESSERACT )
IF(NOT WIN32)
include(FindThreads)
ENDIF(NOT WIN32)
# libjson
include(FindJson)
if( NOT JSON_FOUND)
message(FATAL_ERROR "libjson-c is required.
Install json-c or call cmake -DJSON_HOME=path_to_json_install")
endif( NOT JSON_FOUND)
include_directories(${JSON_INCLUDE_DIR})
# check for curl
IF(WIN32)
add_definitions(-DCURL_STATICLIB)
include(FindCURL_WIN32)
else(WIN32)
# add_definitions(-DCURL_STATICLIB)
include(FindCURL)
include(FindGnutls)
include(FindOpenSSL) # needed by MySmartGrid API...
endif(WIN32)
find_library(LIBUUID uuid)
find_library(LIBGCRYPT gcrypt)
include_directories(${CMAKE_BINARY_DIR})
include_directories(${CMAKE_SOURCE_DIR}/include)
include_directories(${CMAKE_SOURCE_DIR})
add_definitions(-DHAVE_CONFIG_HPP)
myconfigure_file(
${CMAKE_CURRENT_SOURCE_DIR}/config.hpp.in
${CMAKE_CURRENT_BINARY_DIR}/config.hpp
)
add_subdirectory(src)
find_package(Git)
if( BUILD_TEST )
set(ENABLE_GOOGLEMOCK TRUE)
else()
set(ENABLE_GOOGLEMOCK FALSE)
endif()
#disable unit tests on gcc4.6 (problems with googlemock 1.7)
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
# require at least gcc 4.8
execute_process(COMMAND ${CMAKE_CXX_COMPILER} -dumpversion
OUTPUT_VARIABLE GOOGLETEST_GCC_COMPILER_VERSION)
# on travis-ci the CMAKE_CXX_COMPILER_VERSION is empty! message(WARNING "Using compiler: ${CMAKE_CXX_COMPILER_VERSION} ${GOOGLETEST_GCC_COMPILER_VERSION}")
if (GOOGLETEST_GCC_COMPILER_VERSION VERSION_LESS 4.8)
message(WARNING "Disabled googlemock/-test tests due to GCC version < 4.8!")
set(ENABLE_GOOGLEMOCK FALSE)
endif()
endif()
# enable unit testing
include(CTest)
enable_testing()
if(ENABLE_GOOGLEMOCK)
include(FindGTest)
if (NOT GTest_FOUND AND GIT_FOUND)
# Download and unpack googletest at configure time
configure_file(gtest/CMakeLists.txt.in gtest-download/CMakeLists.txt)
execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
RESULT_VARIABLE result
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/gtest-download )
if(result)
message(FATAL_ERROR "CMake step for googletest failed: ${result}")
endif()
execute_process(COMMAND ${CMAKE_COMMAND} --build .
RESULT_VARIABLE result
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/gtest-download )
if(result)
message(FATAL_ERROR "Build step for googletest failed: ${result}")
endif()
# Prevent overriding the parent project's compiler/linker
# settings on Windows
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
# Add googletest directly to our build. This defines
# the gtest and gtest_main targets.
add_subdirectory(${CMAKE_CURRENT_BINARY_DIR}/gtest-src
${CMAKE_CURRENT_BINARY_DIR}/gtest-build
EXCLUDE_FROM_ALL)
# The gtest/gtest_main targets carry header search path
# dependencies automatically when using CMake 2.8.11 or
# later. Otherwise we have to add them here ourselves.
if (CMAKE_VERSION VERSION_LESS 2.8.11)
include_directories("${gtest_SOURCE_DIR}/include")
include_directories("${gmock_SOURCE_DIR}/include")
endif()
endif()
add_subdirectory(tests)
endif()
if (ENABLE_GOOGLEMOCK AND NOT GTest_FOUND AND NOT GIT_FOUND)
message(WARNING "googletest based unit tests disabled due to missing googletest or git. Please install one of those.")
endif(ENABLE_GOOGLEMOCK AND NOT GTest_FOUND AND NOT GIT_FOUND)
add_test(NAME vzlogger_unit_tests COMMAND vzlogger_unit_tests)
### print some output for the user
message("")
message(" ***** Configuration parameters *****")
message(" prefix: ${CMAKE_INSTALL_PREFIX}")
message(" json: -L${JSON_LIBRARY} -I${JSON_INCLUDE_DIR}")
if(SML_FOUND)
message(" sml: -L${SML_LIBRARY} -I${SML_INCLUDE_DIR}")
else(SML_FOUND)
message(" sml: NOT FOUND")
endif(SML_FOUND)
if(MICROHTTPD_FOUND)
message(" microhttpd: -L${MICROHTTPD_LIBRARY} -I${MICROHTTPD_INCLUDE_DIR}")
endif(MICROHTTPD_FOUND)
if(ENABLE_MQTT)
message(" mqtt: -L${MQTT_LIBRARY} -I${MQTT_INCLUDE_DIR}")
endif(ENABLE_MQTT)
if(METEREXEC_ROOTACCESS)
message(" MeterExec: root privileges")
endif(METEREXEC_ROOTACCESS)
if(MBUS_FOUND)
message(" libmbus: -L${MBUS_LIBRARY} -I${MBUS_INCLUDE_DIR}")
endif(MBUS_FOUND)
if( ENABLE_SML AND NOT SML_FOUND)
message(WARNING "libsml was not found.
Install libsml or call cmake -DSML_HOME=path_to_sml_install")
endif( ENABLE_SML AND NOT SML_FOUND)
if( ENABLE_LOCAL AND NOT MICROHTTPD_FOUND )
message(WARNING "microhttpd was not found. Ignored ENABLE_LOCAL!
Install microhttpd or call cmake -DMICROHTTPD_HOME=path_to_microhttpd_install")
endif( ENABLE_LOCAL AND NOT MICROHTTPD_FOUND )
if( ENABLE_OMS AND NOT OMS_SUPPORT)
message(WARNING "oms support not being enabled (libmbus not found)")
endif( ENABLE_OMS AND NOT OMS_SUPPORT)
# add clean-all target that removes the cached files from cmake as well (see e.g. issue #186)
add_custom_target(clean-all
COMMAND ${CMAKE_BUILD_TOOL} clean
COMMAND ${CMAKE_COMMAND} -P clean-all-cmake.txt
)
# CPACK packaging
INCLUDE(InstallRequiredSystemLibraries)
set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS On)
#set(CPACK_SOURCE_GENERATOR "TGZ;TBZ2;PKG")
set(CPACK_SOURCE_GENERATOR "TGZ;TBZ2")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "volkszaehler.org ist ein freies Smart Meter (hier: intelligenter Stromzähler) im Selbstbau.")
set(CPACK_PACKAGE_VENDOR "Steffen Vogel")
set(CPACK_PACKAGE_CONTACT "Steffen Vogel <[email protected]>")
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Steffen Vogel <[email protected]>")
set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING")
set(CPACK_PACKAGE_VERSION_MAJOR ${VZLOGGER_MAJOR_VERSION})
set(CPACK_PACKAGE_VERSION_MINOR ${VZLOGGER_MINOR_VERSION})
set(CPACK_PACKAGE_VERSION_PATCH ${VZLOGGER_SUB_VERSION})
set(CPACK_PACKAGE_INSTALL_DIRECTORY "${PROJECT_NAME}-${VZLOGGER_MAJOR_VERSION}.${VZLOGGER_MINOR_VERSION}")
set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/.svn/;.swp$;.#;/#;.*~;cscope.*;build.*")
IF(WIN32 AND NOT UNIX)
set(CPACK_GENERATOR "NSIS")
set(CPACK_NSIS_PACKAGE_NAME "Gridlicense Demo Tools")
# set(CPACK_PACKAGE_EXECUTABLES "gui4" "Grid License Demo Frontend")
set(CPACK_PACKAGE_DEFAULT_LOCATION ${INSTALL_DIR})
# sure there is at least one set of four (4) backlasshes.
set(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\vzlogger.exe")
set(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY} VZlogger")
set(CPACK_NSIS_HELP_LINK "http://volkszaehler.org/")
set(CPACK_NSIS_URL_INFO_ABOUT "http://wiki.volkszaehler.org/software/controller/vzlogger")
set(CPACK_NSIS_CONTACT "Steffen Vogel <[email protected]>")
set(CPACK_NSIS_MODIFY_PATH ON)
# set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "${CMAKE_PROJECT_NAME}-${EWS_VERSION}")
# set(CPACK_NSIS_MENU_LINKS "${EWS_WEBSITE}" "Homepage for ${EWS_APP_NAME}")
set(CPACK_NSIS_DEFINES " !define MUI_WELCOMEPAGE_TITLE_3LINES 1
!define MUI_FINISHPAGE_TITLE_3LINES 1")
else(WIN32 AND NOT UNIX)
#set(CPACK_SET_DESTDIR On)
set(CPACK_SOURCE_STRIP_FILES "")
set(CPACK_GENERATOR "TGZ;TBZ2;TZ;DEB;RPM")
set(CPACK_RPM_PACKAGE_RELOCATABLE 1)
set(CPACK_SYSTEM_NAME ${CMAKE_HOST_SYSTEM_PROCESSOR})
endif(WIN32 AND NOT UNIX)
include(CPack)