| 1 | /*
|
| 2 | * Version.h
|
| 3 | *
|
| 4 | * This file is part of the XShaderCompiler project (Copyright (c) 2014-2017 by Lukas Hermanns)
|
| 5 | * See "LICENSE.txt" for license information.
|
| 6 | */
|
| 7 |
|
| 8 | #ifndef XSC_VERSION_H
|
| 9 | #define XSC_VERSION_H
|
| 10 |
|
| 11 |
|
| 12 | /* ===== Public macros ===== */
|
| 13 |
|
| 14 | //! Xsc major version number.
|
| 15 | #define XSC_VERSION_MAJOR 0
|
| 16 |
|
| 17 | //! Xsc minor version number.
|
| 18 | #define XSC_VERSION_MINOR 10
|
| 19 |
|
| 20 | //! Xsc version string in the form "X.YZ", where X is the major version, and YZ is the minor version.
|
| 21 | #define XSC_VERSION_STRING "0.10 Alpha"
|
| 22 |
|
| 23 |
|
| 24 | #endif
|
| 25 |
|
| 26 |
|
| 27 |
|
| 28 | // ================================================================================ |