-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappinfo.h.in.cmake
59 lines (46 loc) · 2.25 KB
/
appinfo.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
// <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_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@"
#cmakedefine APPLICATION_SOURCE_VERSION "@APPLICATION_SOURCE_VERSION@"
#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_STRING
# error "Please specify the application version in the top-level CMakeLists.txt"
#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
#ifndef APPLICATION_SOURCE_VERSION
# error "Please specify the application source version in the top-level CmakeLists.txt file or include the ExtractSourceVersionFromGit module."
#endif
#endif