aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-03-25 21:27:49 +0000
committerGerald Combs <gerald@wireshark.org>2012-03-25 21:27:49 +0000
commite19fa8063e170666c3d8a291d23d7e2d46428b42 (patch)
treea4e9479158b5901bea8f4b579b2caca94973099d /Makefile.nmake
parent6f5273e81e5f5ba0c1e0dc3b52bfd3cecfaaf6c4 (diff)
Give qmake a VERSION it will accept.
svn path=/trunk/; revision=41762
Diffstat (limited to 'Makefile.nmake')
-rw-r--r--Makefile.nmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index 47cac08815..371092770e 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -423,7 +423,9 @@ config.h : config.h.win32 config.nmake
ui\qt\config.pri: config.nmake Makefile.nmake
@echo Creating <<ui\qt\config.pri
# Automatically generated from Makefile.nmake. Edit there, not here.
-VERSION = $(VERSION)
+# qmake apparently requires a three-part numeric VERSION.
+VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO)
+VERSION_FULL = $(VERSION)
!IFDEF MANIFEST_INFO_REQUIRED
CONFIG += wireshark_manifest_info_required
!ENDIF