Nicolas Capens | 027372a | 2016-05-16 15:44:15 -0400 | [diff] [blame] | 1 | // Copyright 2016 The SwiftShader Authors. All Rights Reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Nicolas Capens | b1d452e | 2018-01-17 12:45:40 -0500 | [diff] [blame] | 15 | #define MAJOR_VERSION 4 |
Nicolas Capens | 8346311 | 2018-06-12 23:55:16 -0400 | [diff] [blame] | 16 | #define MINOR_VERSION 1 |
Nicolas Capens | 027372a | 2016-05-16 15:44:15 -0400 | [diff] [blame] | 17 | #define BUILD_VERSION 0 |
Stephen White | 17078c7 | 2019-02-27 14:39:14 -0500 | [diff] [blame] | 18 | #define BUILD_REVISION 7 |
John Bauman | 8940182 | 2014-05-06 15:04:28 -0400 | [diff] [blame] | 19 | |
| 20 | #define STRINGIFY(x) #x |
| 21 | #define MACRO_STRINGIFY(x) STRINGIFY(x) |
| 22 | |
| 23 | #define REVISION_STRING MACRO_STRINGIFY(BUILD_REVISION) |
| 24 | #define VERSION_STRING MACRO_STRINGIFY(MAJOR_VERSION) "." MACRO_STRINGIFY(MINOR_VERSION) "." MACRO_STRINGIFY(BUILD_VERSION) "." MACRO_STRINGIFY(BUILD_REVISION) |