aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/app.pro
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2019-03-07 14:48:28 +0100
committerEike Ziller <eike.ziller@qt.io>2019-03-11 08:33:32 +0000
commit2d3e8ef77b7b69a806343758a0047024e67f0761 (patch)
tree6c8415e61fdc6658822736f4c89adab60ba5bef2 /src/app/app.pro
parentb7375aabfb3d0b418553953f03c2e713de8e6e0b (diff)
Windows: Fix missing debug info for qtcreator executable
When we set a VERSION, there is QTBUG-74265 which leads to wrong rules for the pdb file. On Windows we do not really need the VERSION for the qtcreator executable (we create an .rc file for the executable details for Windows), so unset the VERSION that is set in qtcreator.pri on Windows. Change-Id: I1e0289fe027b48560ec71f6df70522174770fe84 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/app/app.pro')
-rw-r--r--src/app/app.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app/app.pro b/src/app/app.pro
index 89b9554a9f..712563419e 100644
--- a/src/app/app.pro
+++ b/src/app/app.pro
@@ -5,8 +5,9 @@ TEMPLATE = app
CONFIG += qtc_runnable sliced_bundle
TARGET = $$IDE_APP_TARGET
DESTDIR = $$IDE_APP_PATH
-VERSION = $$QTCREATOR_VERSION
QT -= testlib
+# work around QTBUG-74265
+win32: VERSION=
HEADERS += ../tools/qtcreatorcrashhandler/crashhandlersetup.h
SOURCES += main.cpp ../tools/qtcreatorcrashhandler/crashhandlersetup.cpp