Sun, 30 Mar 2014 22:14:43 +0300
- only use the git description if it's available and if making a debug build, use short-form version number otherwise
src/main.cpp | file | annotate | diff | comparison | revisions |
--- a/src/main.cpp Sun Mar 30 22:10:29 2014 +0300 +++ b/src/main.cpp Sun Mar 30 22:14:43 2014 +0300 @@ -198,6 +198,7 @@ // String versionString (bool longform) { +#if defined(GIT_DESCRIPTION) && defined (DEBUG) String tag (GIT_DESCRIPTION); String version = tag; @@ -205,4 +206,9 @@ version += "-" + String (GIT_HASH).mid (0, 8); return version; +#elif VERSION_PATCH != 0 + return format ("%1.%2.%3", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH); +#else + return format ("%1.%2", VERSION_MAJOR, VERSION_MINOR); +#endif }