From b3491d149dd2272f6bc547d4970e3cc34128e5cf Mon Sep 17 00:00:00 2001 From: Abdessattar Sassi <457645+abdes@users.noreply.github.com> Date: Mon, 21 Oct 2024 19:37:55 +0400 Subject: [PATCH] fix: generate version numbers as numbers --- templates/version.h.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/version.h.in b/templates/version.h.in index f55fd99..97ad442 100644 --- a/templates/version.h.in +++ b/templates/version.h.in @@ -16,9 +16,9 @@ namespace @META_PROJECT_ID_LOWER@ { constexpr auto cAuthorDomain = "@META_AUTHOR_DOMAIN@"; constexpr auto cAuthor = "@META_AUTHOR_MAINTAINER@"; - constexpr auto cVersionMajor = "@META_VERSION_MAJOR@"; - constexpr auto cVersionMinor = "@META_VERSION_MINOR@"; - constexpr auto cVersionPatch = "@META_VERSION_PATCH@"; + constexpr auto cVersionMajor = @META_VERSION_MAJOR@; + constexpr auto cVersionMinor = @META_VERSION_MINOR@; + constexpr auto cVersionPatch = @META_VERSION_PATCH@; constexpr auto cVersionRevision = "@META_VERSION_REVISION@"; constexpr auto cVersion = "@META_VERSION@";