/* * Version.h * * This file is part of the XShaderCompiler project (Copyright (c) 2014-2017 by Lukas Hermanns) * See "LICENSE.txt" for license information. */ #ifndef XSC_VERSION_H #define XSC_VERSION_H /* ===== Public macros ===== */ //! Xsc major version number. #define XSC_VERSION_MAJOR 0 //! Xsc minor version number. #define XSC_VERSION_MINOR 10 //! Xsc version string in the form "X.YZ", where X is the major version, and YZ is the minor version. #define XSC_VERSION_STRING "0.10 Alpha" #endif // ================================================================================