Add bottom status bar with git build info and compile time

This commit is contained in:
Armin 2026-08-13 12:51:42 +02:00
commit a2485907ef
6 changed files with 118 additions and 1 deletions

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

@ -0,0 +1,8 @@
#pragma once
// Generated at build time by cmake/GenerateBuildInfo.cmake. Do not edit manually.
#define CHROMAFLOCK_GIT_HASH "@CHROMAFLOCK_GIT_HASH@"
#define CHROMAFLOCK_GIT_BRANCH "@CHROMAFLOCK_GIT_BRANCH@"
#define CHROMAFLOCK_GIT_DIRTY @CHROMAFLOCK_GIT_DIRTY@
#include <string>
std::string getBuildInfoString();