Mir
version.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2016 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 2 or 3 as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  */
17 
18 #ifndef MIRAL_VERSION_H_
19 #define MIRAL_VERSION_H_
20 
21 #include "mir_toolkit/mir_version_number.h"
22 
23 // =========================================================================================
24 // ==> miral/version.h is generated by cmake. DO NOT EDIT! (edit version.h.in instead) <==
25 // =========================================================================================
26 
27 /**
28  * MIRAL_MAJOR_VERSION
29  *
30  * The major MirAL API version. This will increase once per API incompatible release.
31  *
32  * See also: http://semver.org/
33  */
34 #define MIRAL_MAJOR_VERSION (3)
35 
36 /**
37  * MIRAL_MINOR_VERSION
38  *
39  * The minor MirAL API version. This will increase each time new backwards-compatible API
40  * is added, and will reset to 0 each time MIRAL_MAJOR_VERSION is incremented.
41  *
42  * See also: http://semver.org/
43  */
44 #define MIRAL_MINOR_VERSION (6)
45 
46 /**
47  * MIRAL_MICRO_VERSION
48  *
49  * The micro miral API version. This will increment each release.
50  * This is usually uninteresting for server code, but may be of use in selecting
51  * whether to use a feature that has previously been buggy.
52  *
53  * This corresponds to the PATCH field of http://semver.org/
54  */
55 #define MIRAL_MICRO_VERSION (0)
56 
57 /**
58  * MIRAL_VERSION
59  *
60  * The current version of the MirAL headers in use.
61  */
62 #define MIRAL_VERSION
66 
67 #endif /* MIRAL_VERSION_H_ */

Copyright © 2012-2022 Canonical Ltd.
Generated on Tue Sep 13 03:20:30 UTC 2022
This documentation is licensed under the GPL version 2 or 3.