#ifndef FUD_VERSION_HPP #define FUD_VERSION_HPP #include namespace fud { constexpr uint8_t FudVersionMajor = @PROJECT_VERSION_MAJOR@; constexpr uint8_t FudVersionMinor = @PROJECT_VERSION_MINOR@; constexpr uint8_t FudVersionPatch = @PROJECT_VERSION_PATCH@; constexpr const char FudGitHash[] = "@GIT_HASH@"; static constexpr bool fudBoundsChecking = @FUD_BOUNDS_CHECKING@; } // namespace fud #endif