Skip to content

Commit

Permalink
[libmlocale] Link against the Qt 5 version for tests/benchmarks.
Browse files Browse the repository at this point in the history
  • Loading branch information
rburchell committed Apr 10, 2013
1 parent 0b35e04 commit 5c8734b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion benchmarks/common_top.pri
Expand Up @@ -20,7 +20,8 @@ equals(QT_MAJOR_VERSION, 4): target.path = $$[QT_INSTALL_LIBS]/libmlocale-benchm
equals(QT_MAJOR_VERSION, 5): target.path = $$[QT_INSTALL_LIBS]/libmlocale-benchmarks5
INSTALLS += target

LIBS += $$mAddLibrary(mlocale)
equals(QT_MAJOR_VERSION, 4): LIBS += $$mAddLibrary(mlocale)
equals(QT_MAJOR_VERSION, 5): LIBS += $$mAddLibrary(mlocale5)

support_files.files =
equals(QT_MAJOR_VERSION, 4): support_files.path = $$[QT_INSTALL_LIBS]/libmlocale-benchmarks
Expand Down
3 changes: 2 additions & 1 deletion tests/common_top.pri
Expand Up @@ -23,7 +23,8 @@ equals(QT_MAJOR_VERSION, 4): target.path = $$[QT_INSTALL_LIBS]/libmlocale-tests
equals(QT_MAJOR_VERSION, 5): target.path = $$[QT_INSTALL_LIBS]/libmlocale-tests5
INSTALLS += target

LIBS += $$mAddLibrary(mlocale)
equals(QT_MAJOR_VERSION, 4): LIBS += $$mAddLibrary(mlocale)
equals(QT_MAJOR_VERSION, 5): LIBS += $$mAddLibrary(mlocale5)

support_files.files =
equals(QT_MAJOR_VERSION, 4): support_files.path = $$[QT_INSTALL_LIBS]/libmlocale-tests
Expand Down

0 comments on commit 5c8734b

Please sign in to comment.