From 939a9bf5c415543055f8a675a38fa4a1a533ad12 Mon Sep 17 00:00:00 2001 From: Leonardo Murillo Date: Thu, 12 Dec 2013 12:59:34 -0800 Subject: [PATCH] We can let qt find things on its own, which will let us add frameworks/plugins inside the bundle --- interface/src/main.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/interface/src/main.cpp b/interface/src/main.cpp index 31468f1320..07788fefe0 100644 --- a/interface/src/main.cpp +++ b/interface/src/main.cpp @@ -24,11 +24,6 @@ int main(int argc, const char * argv[]) { timeval startup_time; gettimeofday(&startup_time, NULL); - #if defined(Q_OS_MAC) - const QString QT_RELEASE_PLUGIN_PATH = "/usr/local/lib/qt5/plugins"; - QCoreApplication::addLibraryPath(QT_RELEASE_PLUGIN_PATH); - #endif - int exitCode; { Application app(argc, const_cast(argv), startup_time);