diff options
author | con <qtc-committer@nokia.com> | 2010-10-29 16:22:44 +0200 |
---|---|---|
committer | con <qtc-committer@nokia.com> | 2010-11-01 14:55:37 +0100 |
commit | 59c301a8c8ce9daa2c47f4651b39c7a1fed7226c (patch) | |
tree | 21ca0245a169ba0cada6096d8d87b3eb11c40a8d /src/qtcreatorplugin.pri | |
parent | 724f67b31161c73d0ed2a38541a584408ac23f7c (diff) | |
download | qt-creator-59c301a8c8ce9daa2c47f4651b39c7a1fed7226c.tar.gz |
Make tests compile on Mac. Use qtLibraryName instead of qtLibraryTarget.
qtLibraryTarget is only defined if used with TEMPLATE=lib, which makes
it fail in pri files that are used for app pro files. The tests still
don't run because of run time linking issues.
Diffstat (limited to 'src/qtcreatorplugin.pri')
-rw-r--r-- | src/qtcreatorplugin.pri | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qtcreatorplugin.pri b/src/qtcreatorplugin.pri index f18f4f5b9c..a13d519dc8 100644 --- a/src/qtcreatorplugin.pri +++ b/src/qtcreatorplugin.pri @@ -51,5 +51,5 @@ CONFIG += plugin plugin_with_soname INSTALLS += target pluginspec } -TARGET = $$qtLibraryTarget($$TARGET) +TARGET = $$qtLibraryName($$TARGET) |