Add a hook for the build system to specify a version description.

E.g. to show Qt Creator 1.3.85 (2.0.0-rc1)
This commit is contained in:
con
2010-05-11 10:28:29 +02:00
parent cf57bda96f
commit acea722d75
2 changed files with 17 additions and 5 deletions

View File

@@ -50,6 +50,12 @@ const char * const IDE_VERSION_LONG = IDE_VERSION;
const char * const IDE_AUTHOR = "Nokia Corporation";
const char * const IDE_YEAR = "2010";
#ifdef IDE_VERSION_DESCRIPTION
const char * const IDE_VERSION_DESCRIPTION_STR = STRINGIFY(IDE_VERSION_DESCRIPTION);
#else
const char * const IDE_VERSION_DESCRIPTION_STR = "";
#endif
#ifdef IDE_REVISION
const char * const IDE_REVISION_STR = STRINGIFY(IDE_REVISION);
#else