summaryrefslogtreecommitdiff
path: root/cmake/fud_version.hpp.in
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2024-10-21 12:49:43 -0500
committerDominick Allen <djallen@librehumanitas.org>2024-10-21 12:49:43 -0500
commitb2dbcb55e2832c373fecb4033a3ed77e5dbc77aa (patch)
tree1f294fcf1d85a02db86de3eea2b03393fd89ca5a /cmake/fud_version.hpp.in
parent6a27a2a4032e88fa9154ef0f0741edc584f7a701 (diff)
Add vector and option.
Diffstat (limited to 'cmake/fud_version.hpp.in')
-rw-r--r--cmake/fud_version.hpp.in15
1 files changed, 0 insertions, 15 deletions
diff --git a/cmake/fud_version.hpp.in b/cmake/fud_version.hpp.in
deleted file mode 100644
index 5cce0e4..0000000
--- a/cmake/fud_version.hpp.in
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef FUD_VERSION_HPP
-#define FUD_VERSION_HPP
-
-#include <cstdint>
-
-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 GitHash[] = "@GIT_HASH@";
-
-} // namespace fud
-
-#endif