diff options
author | Eike Ziller <[email protected]> | 2013-10-02 16:09:23 +0200 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2013-10-07 15:32:10 +0200 |
commit | c05e9d52b2721d442c62e1ce4ed1058a756bf396 (patch) | |
tree | fe7075c906d2d8b6a455c5b2041b874a4d1af58b /src/plugins/ios/iostoolhandler.cpp | |
parent | 810274d038dc1daf22db42de1b5318d5157ffb85 (diff) |
Ios: Move tools to <libexec>/ios, make them lowercase, fix deployment
They can't be directly in libexec path, because then they couldn't have
their own qt.conf for resolving the Cocoa platform plugin.
Change-Id: I8f3fae85c548747a7d826c078c7ac1fb0a836b43
Reviewed-by: Fawzi Mohamed <[email protected]>
Diffstat (limited to 'src/plugins/ios/iostoolhandler.cpp')
-rw-r--r-- | src/plugins/ios/iostoolhandler.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/ios/iostoolhandler.cpp b/src/plugins/ios/iostoolhandler.cpp index d7fc26d9672..c3643c9e370 100644 --- a/src/plugins/ios/iostoolhandler.cpp +++ b/src/plugins/ios/iostoolhandler.cpp @@ -30,6 +30,7 @@ #include "iostoolhandler.h" #include "iosconfigurations.h" +#include <coreplugin/icore.h> #include <utils/qtcassert.h> #include <utils/fileutils.h> @@ -924,13 +925,13 @@ void IosSimulatorToolHandlerPrivate::addDeviceArguments(QStringList &args) const QString IosToolHandler::iosDeviceToolPath() { - QString res = QCoreApplication::applicationDirPath() + QLatin1String("/iosTool"); + QString res = Core::ICore::libexecPath() + QLatin1String("/ios/iostool"); return res; } QString IosToolHandler::iosSimulatorToolPath() { - QString res = QCoreApplication::applicationDirPath() + QLatin1String("/iossim"); + QString res = Core::ICore::libexecPath() + QLatin1String("/ios/iossim"); return res; } |