-
Notifications
You must be signed in to change notification settings - Fork 32
/
package_config.h.in
46 lines (34 loc) · 1.54 KB
/
package_config.h.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
/*--------------------------------------------------------------------------
* This file is autogenerated from package_config.h.in
* during the cmake configuration of your project. If you need to make changes
* edit the original file NOT THIS FILE.
* --------------------------------------------------------------------------*/
#ifndef _PACKAGE_CONFIG_H_
#define _PACKAGE_CONFIG_H_
/* Define to the full name of this package. */
#define PACKAGE_NAME "@PACKAGE_NAME@"
/* Define to the version of this package. */
#define PACKAGE_VERSION "@PACKAGE_VERSION@"
/* Define git revision if available (or build date) */
#cmakedefine PACKAGE_REVISION "@PACKAGE_REVISION@"
/* Define git hash if available */
#cmakedefine PACKAGE_HASH "@PACKAGE_HASH@"
/* Define to the home page for this package. */
#define PACKAGE_URL "@PACKAGE_URL@"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "@PACKAGE_TARNAME@"
#define PACKAGE_VERSION_STRING "v" PACKAGE_VERSION
/* Define to the full name and version of this package. */
#ifdef PACKAGE_REVISION
#define PACKAGE_REVISION_STRING PACKAGE_VERSION_STRING " (rev:" PACKAGE_REVISION ")"
#else
#define PACKAGE_REVISION_STRING PACKAGE_VERSION_STRING
#endif
#ifdef PACKAGE_HASH
#define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_REVISION_STRING " (git:" PACKAGE_HASH ")"
#else
#define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_REVISION_STRING
#endif
#endif /* _PACKAGE_CONFIG_H_ */