Added build date, and version type to build id

This commit is contained in:
Alexandre 2026-07-20 17:25:14 +02:00
parent 79a73b8ceb
commit a444a53ea7

View File

@ -2,6 +2,8 @@
#define ENGINE_H #define ENGINE_H
// Normal header // Normal header
// Current progress
// 3 - The render Pipeline, not started it yet
#include "descriptors.h" // Required for public interface custom allocator #include "descriptors.h" // Required for public interface custom allocator
#include "Common/Types.h" #include "Common/Types.h"
@ -204,6 +206,7 @@ void Engine::init() {
#ifdef DEBUG #ifdef DEBUG
fmt::println("[Engine:Init] Initializing the engine..."); fmt::println("[Engine:Init] Initializing the engine...");
fmt::println("[Engine:Info] Current engine version {}", BUILD_ID); fmt::println("[Engine:Info] Current engine version {}", BUILD_ID);
fmt::println("[Engine:Info] Compiled on {} at {}", __DATE__ ,__TIME__);
#endif #endif
glfwInit(); glfwInit();