summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-09-23 12:11:13 (GMT)
committerBrad King <brad.king@kitware.com>2016-09-23 12:11:13 (GMT)
commiteb1524869cba77e008b4d569dbc1b487f93e04e0 (patch)
tree6c172908f50d1ddac3e219c6134424d111ea273b
parentc5dcd31e92c0a09009a340e3fe23ced4f6190b64 (diff)
parent48624b3cb85a6e1854eff0ef45996ef75b5aa9e9 (diff)
downloadCMake-eb1524869cba77e008b4d569dbc1b487f93e04e0.zip
CMake-eb1524869cba77e008b4d569dbc1b487f93e04e0.tar.gz
CMake-eb1524869cba77e008b4d569dbc1b487f93e04e0.tar.bz2
Merge branch 'qtdialog-lib-paths' into release
-rw-r--r--Source/QtDialog/CMakeSetup.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/QtDialog/CMakeSetup.cxx b/Source/QtDialog/CMakeSetup.cxx
index c849d52..61c4d7b 100644
--- a/Source/QtDialog/CMakeSetup.cxx
+++ b/Source/QtDialog/CMakeSetup.cxx
@@ -101,11 +101,13 @@ int main(int argc, char** argv)
QTextCodec::setCodecForLocale(utf8_codec);
#endif
+#if QT_VERSION < 0x050000
// clean out standard Qt paths for plugins, which we don't use anyway
// when creating Mac bundles, it potentially causes problems
foreach (QString p, QApplication::libraryPaths()) {
QApplication::removeLibraryPath(p);
}
+#endif
// tell the cmake library where cmake is
QDir cmExecDir(QApplication::applicationDirPath());