forked from metacall/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.h.in
More file actions
141 lines (119 loc) · 3.93 KB
/
version.h.in
File metadata and controls
141 lines (119 loc) · 3.93 KB
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
/*
* CMake Versioning Utility by Parra Studios
* A template for generating versioning utilities.
*
* Copyright (C) 2016 - 2021 Vicente Eduardo Ferrer Garcia <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef ${META_PROJECT_NAME_UPPER}_VERSION_H
#define ${META_PROJECT_NAME_UPPER}_VERSION_H 1
/* -- Headers -- */
#include <version/version_api.h>
#ifdef __cplusplus
extern "C" {
#endif
/* -- Headers -- */
#include <stdint.h>
/* -- Definitions -- */
#define ${META_PROJECT_NAME_UPPER}_PROJECT_NAME "@META_PROJECT_NAME@"
#define ${META_PROJECT_NAME_UPPER}_PROJECT_DESCRIPTION "@META_PROJECT_DESCRIPTION@"
#define ${META_PROJECT_NAME_UPPER}_AUTHOR_ORGANIZATION "@META_AUTHOR_ORGANIZATION@"
#define ${META_PROJECT_NAME_UPPER}_AUTHOR_DOMAIN "@META_AUTHOR_DOMAIN@"
#define ${META_PROJECT_NAME_UPPER}_AUTHOR_MAINTAINER "@META_AUTHOR_MAINTAINER@"
#define ${META_PROJECT_NAME_UPPER}_VERSION_MAJOR "@META_VERSION_MAJOR@"
#define ${META_PROJECT_NAME_UPPER}_VERSION_MAJOR_ID @META_VERSION_MAJOR@
#define ${META_PROJECT_NAME_UPPER}_VERSION_MINOR "@META_VERSION_MINOR@"
#define ${META_PROJECT_NAME_UPPER}_VERSION_MINOR_ID @META_VERSION_MINOR@
#define ${META_PROJECT_NAME_UPPER}_VERSION_PATCH "@META_VERSION_PATCH@"
#define ${META_PROJECT_NAME_UPPER}_VERSION_PATCH_ID @META_VERSION_PATCH@
#define ${META_PROJECT_NAME_UPPER}_VERSION_REVISION "@META_VERSION_REVISION@"
#define ${META_PROJECT_NAME_UPPER}_VERSION "@META_VERSION@"
#define ${META_PROJECT_NAME_UPPER}_NAME_VERSION "@META_NAME_VERSION@"
/* -- Member Data -- */
struct ${META_PROJECT_NAME_LOWER}_version_type
{
unsigned int major;
unsigned int minor;
unsigned int patch;
const char * revision;
const char * str;
const char * name;
};
/* -- Methods -- */
/**
* @brief
* Provide the module version struct
*
* @return
* Static struct containing unpacked version
*/
VERSION_API const void * ${META_PROJECT_NAME}_version(void);
/**
* @brief
* Provide the module version hexadecimal value
* with format 0xMMIIPPPP where M is @major,
* I is @minor and P is @patch
*
* @param[in] major
* Unsigned integer representing major version
*
* @param[in] minor
* Unsigned integer representing minor version
*
* @param[in] patch
* Unsigned integer representing patch version
*
* @return
* Hexadecimal integer containing packed version
*/
VERSION_API uint32_t ${META_PROJECT_NAME}_version_hex_make(unsigned int major, unsigned int minor, unsigned int patch);
/**
* @brief
* Provide the module version hexadecimal value
* with format 0xMMIIPPPP where M is major,
* I is minor and P is patch
*
* @return
* Hexadecimal integer containing packed version
*/
VERSION_API uint32_t ${META_PROJECT_NAME}_version_hex(void);
/**
* @brief
* Provide the module version string
*
* @return
* Static string containing module version
*/
VERSION_API const char * ${META_PROJECT_NAME}_version_str(void);
/**
* @brief
* Provide the module version revision string
*
* @return
* Static string containing module version revision
*/
VERSION_API const char * ${META_PROJECT_NAME}_version_revision(void);
/**
* @brief
* Provide the module version name
*
* @return
* Static string containing module version name
*/
VERSION_API const char * ${META_PROJECT_NAME}_version_name(void);
#ifdef __cplusplus
}
#endif
#endif /* ${META_PROJECT_NAME_UPPER}_VERSION_H */