mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
feat(build): compile version strings from CMake
This commit is contained in:
parent
0ca9e90859
commit
03fc131e2e
2 changed files with 27 additions and 1 deletions
|
|
@ -1,7 +1,21 @@
|
|||
#include "console/Console.hpp"
|
||||
#include "console/command/Commands.hpp"
|
||||
|
||||
#if defined(NDEBUG)
|
||||
#define WHOA_BUILD_TYPE "Release"
|
||||
#else
|
||||
#define WHOA_BUILD_TYPE "Debug"
|
||||
#endif
|
||||
|
||||
#define WHOA_BRAND_STRING "Whoa"
|
||||
|
||||
#define WHOA_PROJECT_URL "https://github.com/thunderbrewhq/thunderbrew"
|
||||
|
||||
#define WHOA_VERSION_STRING WHOA_BRAND_STRING " [" WHOA_BUILD_TYPE "] Build " WHOA_VERSION_BUILD " (" __DATE__ ") <" WHOA_PROJECT_URL ">"
|
||||
|
||||
DECLARE_COMMAND(Ver) {
|
||||
ConsoleWrite("Whoa <https://github.com/whoahq/whoa>", DEFAULT_COLOR);
|
||||
// ConsoleWrite("Thunderbrew <https://github.com/thunderbrewhq/thunderbrew>", ADMIN_COLOR);
|
||||
ConsoleWrite(WHOA_VERSION_STRING, DEFAULT_COLOR);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue