-
Notifications
You must be signed in to change notification settings - Fork 123
/
config.hpp.in
61 lines (41 loc) · 1.53 KB
/
config.hpp.in
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
#ifndef _config_hpp_in_
#define _config_hpp_in_
/* Local interface */
#cmakedefine LOCAL_SUPPORT 1
/* mqtt support */
#cmakedefine ENABLE_MQTT 1
/* Name of package */
#define PACKAGE "vzlogger"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "https://github.com/volkszaehler/vzlogger/issues"
/* Define to the full name of this package. */
#define PACKAGE_NAME "vzlogger"
/* Define to the full name and version of this package. */
#cmakedefine PACKAGE_STRING "@PACKAGE_STRING@"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "vzlogger"
/* Define to the home page for this package. */
#define PACKAGE_URL "https://github.com/volkszaehler/vzlogger"
/* Define to the version of this package. */
#cmakedefine PACKAGE_VERSION "@PACKAGE_VERSION@"
/* Smart Messaging Language */
#cmakedefine SML_SUPPORT 1
// OMS based devices support
#cmakedefine OMS_SUPPORT 1
/* OCR Meter support */
#cmakedefine OCR_SUPPORT 1
/* OCR text recognition support */
#cmakedefine OCR_TESSERACT_SUPPORT 1
/* Allow MeterExec protocol to use root privileges */
#cmakedefine METEREXEC_ROOTACCESS 1
/* true if we use shared_ptr from stl */
#cmakedefine USE_STL_TR1 1
/* true if openssl is found */
#cmakedefine WITH_OPENSSL 1
/* true if openssl is found */
#cmakedefine HAVE_OPENSSL 1
/* Version number of package */
#cmakedefine VERSION "@VZLOGGER_RPM_VERSION@"
/* do we have a compiler with proper c++ regex support? */
#cmakedefine HAVE_CPP_REGEX 1
#endif /* _config_hpp_in_ */