Reduce confusion by hiding MakeNSISW version.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7030 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2018-10-30 23:22:00 +00:00
parent 81a5f785c7
commit 1293da6d1e
5 changed files with 17 additions and 6 deletions

View file

@ -26,7 +26,7 @@
#define TSTRINGIFY(x) TSTRINGIFY_(x)
#ifdef RELEASE
const TCHAR *NSISW_VERSION = _T("MakeNSISW ") TSTRINGIFY(RELEASE) _T(" (NSIS Compiler Interface)");
const TCHAR *NSISW_VERSION = TSTRINGIFY(RELEASE);
#else
const TCHAR *NSISW_VERSION = _T("MakeNSISW ") __TDATE__;
const TCHAR *NSISW_VERSION = __TDATE__;
#endif