This commit is contained in:
Armin 2026-08-14 21:14:18 +02:00
commit 78e52e612f
9 changed files with 1553 additions and 0 deletions

12
Source/BuildInfo.h.in Normal file
View file

@ -0,0 +1,12 @@
#pragma once
namespace mindball
{
namespace BuildInfo
{
inline constexpr const char* gitHash = "@MINDBALL_GIT_HASH@";
inline constexpr const char* gitBranch = "@MINDBALL_GIT_BRANCH@";
inline constexpr bool gitDirty = @MINDBALL_GIT_DIRTY@;
inline constexpr const char* buildTime = "@MINDBALL_BUILD_TIME@";
}
}