blob: 58de47fdc5e2e1344aec898d1f7149a8e5b4fec0 [file] [log] [blame]
Nicolas Capens027372a2016-05-16 15:44:15 -04001// 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 Capensb1d452e2018-01-17 12:45:40 -050015#define MAJOR_VERSION 4
Nicolas Capens83463112018-06-12 23:55:16 -040016#define MINOR_VERSION 1
Nicolas Capens027372a2016-05-16 15:44:15 -040017#define BUILD_VERSION 0
Stephen White17078c72019-02-27 14:39:14 -050018#define BUILD_REVISION 7
John Bauman89401822014-05-06 15:04:28 -040019
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)