From 37ff8f55a07967cad84f217c1c6702f56277efcb Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 11 Mar 2013 17:34:45 +0100 Subject: [PATCH] don't install .lib files under windows we don't support building 3rd party plugins against an installed qt creator anyway (we don't install any headers), so it makes no sense to install import libraries (especially into the wrong directory). Task-number: QTCREATORBUG-8395 Change-Id: Ie6703598324d9dd39aa82d1eb0f2fecd224e4390 Reviewed-by: Tim Jenssen Reviewed-by: Joerg Bornemann --- src/qtcreatorlibrary.pri | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/qtcreatorlibrary.pri b/src/qtcreatorlibrary.pri index 0dc1a179b23..947286b4417 100644 --- a/src/qtcreatorlibrary.pri +++ b/src/qtcreatorlibrary.pri @@ -19,9 +19,10 @@ contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols !macx { win32 { - target.path = $$QTC_PREFIX/bin + dlltarget.path = $$QTC_PREFIX/bin + INSTALLS += dlltarget } else { target.path = $$QTC_PREFIX/$$IDE_LIBRARY_BASENAME/qtcreator + INSTALLS += target } - INSTALLS += target }