aboutsummaryrefslogtreecommitdiffstats
path: root/qtcreator.pri
diff options
context:
space:
mode:
authordt <qtc-committer@nokia.com>2009-05-12 16:18:38 +0200
committerdt <qtc-committer@nokia.com>2009-05-12 16:24:13 +0200
commita8aa5c82197d0a28616d8cd5ce8a59dce797b65a (patch)
treecc6518631e516f1aa29c46f9693ccb1e3924ce4f /qtcreator.pri
parenta6705ff8c53abd6ed7fca549697fc15ff0992b42 (diff)
Remove logic trying to guess whether it should be lib or lib64.
Instead use qmake IDE_LIBRARY_BASENAME=lib64 to set it to lib64.
Diffstat (limited to 'qtcreator.pri')
-rw-r--r--qtcreator.pri6
1 files changed, 3 insertions, 3 deletions
diff --git a/qtcreator.pri b/qtcreator.pri
index b2fe226d179..83ff7ceea1c 100644
--- a/qtcreator.pri
+++ b/qtcreator.pri
@@ -35,12 +35,12 @@ isEmpty(TEST):CONFIG(debug, debug|release) {
}
}
-linux-*-64 {
- IDE_LIBRARY_BASENAME = lib64
-} else {
+isEmpty(IDE_LIBRARY_BASENAME) {
IDE_LIBRARY_BASENAME = lib
}
+DEFINES += IDE_LIBRARY_BASENAME=\\\"$$IDE_LIBRARY_BASENAME\\\"
+
equals(TEST, 1) {
QT +=testlib
DEFINES += WITH_TESTS