Used Bloom version number from CMakeLists.txt file instead of repeating

This commit is contained in:
Nav
2022-01-22 16:46:41 +00:00
parent dc0c8643d7
commit 752aaeffcf
2 changed files with 3 additions and 1 deletions

View File

@@ -33,7 +33,7 @@ namespace Bloom
class Application: public Thread
{
public:
static const inline VersionNumber VERSION = VersionNumber(0, 5, 0);
static const inline VersionNumber VERSION = VersionNumber(BLOOM_VERSION);
explicit Application() = default;