From b2dbcb55e2832c373fecb4033a3ed77e5dbc77aa Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Mon, 21 Oct 2024 12:49:43 -0500 Subject: Add vector and option. --- cmake/fud_config.hpp.in | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 cmake/fud_config.hpp.in (limited to 'cmake/fud_config.hpp.in') diff --git a/cmake/fud_config.hpp.in b/cmake/fud_config.hpp.in new file mode 100644 index 0000000..e83e9c3 --- /dev/null +++ b/cmake/fud_config.hpp.in @@ -0,0 +1,16 @@ +#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 -- cgit v1.2.3