#ifndef @INCLUDE_GUARD_PREFIX@_CONFIG_H #define @INCLUDE_GUARD_PREFIX@_CONFIG_H /** * \file * \brief Configuration pararameters defined by the build system. * * \warning This file is auto-generated by CMake. */ /** * \def @SYMBOL_PREFIX@_VERSION * \brief Denotes a semantic version of the form {MAJOR}{MINOR}{PATCH} as three, * two-digit decimal numbers without leading zeros (e.g. 100 is 0.1.0). */ #define @SYMBOL_PREFIX@_VERSION @INTEGER_PROJECT_VERSION@ /** * \def @SYMBOL_PREFIX@_MAJOR_VERSION * \brief Denotes a semantic major version as a decimal number. */ #define @SYMBOL_PREFIX@_MAJOR_VERSION (@SYMBOL_PREFIX@_VERSION / 100000) /** * \def @SYMBOL_PREFIX@_MINOR_VERSION * \brief Denotes a semantic minor version as a decimal number. */ #define @SYMBOL_PREFIX@_MINOR_VERSION ((@SYMBOL_PREFIX@_VERSION / 100) % 1000) /** * \def @SYMBOL_PREFIX@_PATCH_VERSION * \brief Denotes a semantic patch version as a decimal number. */ #define @SYMBOL_PREFIX@_PATCH_VERSION (@SYMBOL_PREFIX@_VERSION % 100) #endif /* @INCLUDE_GUARD_PREFIX@_CONFIG_H */