mirror of
https://codeberg.org/armin/mindball.git
synced 2026-09-01 11:50:52 +02:00
12 lines
336 B
C
12 lines
336 B
C
#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@";
|
|
}
|
|
}
|