-
Notifications
You must be signed in to change notification settings - Fork 0
/
libraryinfo.h.in.cmake
74 lines (58 loc) · 2.72 KB
/
libraryinfo.h.in.cmake
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
// <Copyright Holder>. Copyright (C) <Copyright Year(s)>. <License>.
#ifndef HEADER_SRC_APPINFO_H_INCLUDED
#define HEADER_SRC_APPINFO_H_INCLUDED
#include <boost/preprocessor/stringize.hpp>
/*
* AUTO-GENERATION WARNING:
* This file has been automatically generated from "appinfo.h.in.cmake".
* DO NOT edit this file, as any changes will be automatically discarded.
*/
#cmakedefine APPLICATION_NAME "@APPLICATION_NAME@"
#cmakedefine APPLICATION_CODENAME "@APPLICATION_CODENAME@"
#cmakedefine APPLICATION_COPYRIGHT_YEARS "@APPLICATION_COPYRIGHT_YEARS@"
#cmakedefine APPLICATION_VERSION_MAJOR @APPLICATION_VERSION_MAJOR@
#cmakedefine APPLICATION_VERSION_MINOR @APPLICATION_VERSION_MINOR@
#cmakedefine APPLICATION_VERSION_PATCH @APPLICATION_VERSION_PATCH@
#cmakedefine APPLICATION_VERSION_TYPE "@APPLICATION_VERSION_TYPE@"
#cmakedefine APPLICATION_VERSION_STRING "@APPLICATION_VERSION_STRING@"
#cmakedefine APPLICATION_VENDOR_ID "@APPLICATION_VENDOR_ID@"
#cmakedefine APPLICATION_VENDOR_NAME "@APPLICATION_VENDOR_NAME@"
#cmakedefine APPLICATION_VENDOR_URL "@APPLICATION_VENDOR_URL@"
#cmakedefine APPLICATION_ID "@APPLICATION_VENDOR_ID@"
#ifndef APPLICATION_NAME
# error "Please specify the application name in the top-level CMakeLists.txt file."
#endif
#ifndef APPLICATION_CODENAME
# error "Please specify the application codename in the top-level CMakeLists.txt file."
#endif
#ifndef APPLICATION_COPYRIGHT_YEARS
# error "Please specify the application copyright years (years during which this application was created, edited, or modified) in the top-level CMakeLists.txt file."
#endif
#ifndef APPLICATION_VERSION_MAJOR
# define APPLICATION_VERSOIN_MAJOR 0
#endif
#ifndef APPLICATION_VERSION_MINOR
# define APPLICATION_VERSION_MINOR 0
#endif
#ifndef APPLICATION_VERSION_PATCH
# define APPLICATION_VERSION_PATCH 0
#endif
#ifndef APPLICATION_VERSION_TYPE
# define APPLICATION_VERSION_TYPE "SNAPSHOT"
#endif
#ifndef APPLICATION_VERSION_STRING
# define APPLICATION_VERSION_STRING BOOST_PP_STRINGIZE(APPLICATION_VERSION_MAJOR) "." BOOST_PP_STRINGIZE(APPLICATION_VERSION_MINOR) "." BOOST_PP_STRINGIZE(APPLICATION_VERSION_PATCH) "-" APPLICATION_VERSION_TYPE
#endif
#ifndef APPLICATION_VENDOR_ID
# error "Please specify the application vendor id in the top-level CMakeLists.txt file."
#endif
#ifndef APPLICATION_VENDOR_NAME
# error "Please specify the application vendor name in the top-level CMakeLists.txt file."
#endif
#ifndef APPLICATION_VENDOR_URL
# error "Please specify the application vendor URL in the top-level CMakeLists.txt file."
#endif
#ifndef APPLICATION_ID
# define APPLICATION_ID APPLICATION_VENDOR_ID "." APPLICATION_CODENAME
#endif
#endif