- only use the git description if it's available and if making a debug build, use short-form version number otherwise

Sun, 30 Mar 2014 22:14:43 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 30 Mar 2014 22:14:43 +0300
changeset 122
4ef6734f09ff
parent 121
b716d1902cd4
child 123
ad33901eb4f6

- 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
 }

mercurial