Skip to content

Commit

Permalink
fix: generate version numbers as numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
abdes committed Oct 21, 2024
1 parent f53e43d commit b3491d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/version.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -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@";
Expand Down

0 comments on commit b3491d1

Please sign in to comment.