소스 검색

Merge topic 'qtdialog-lib-paths'

48624b3c cmake-gui: Do not remove library paths for Qt5 plugins.
Brad King 9 년 전
부모
커밋
785f875426
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      Source/QtDialog/CMakeSetup.cxx

+ 2 - 0
Source/QtDialog/CMakeSetup.cxx

@@ -109,11 +109,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());