aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/ios/iostoolhandler.cpp
diff options
context:
space:
mode:
authorEike Ziller <[email protected]>2013-10-02 16:09:23 +0200
committerEike Ziller <[email protected]>2013-10-07 15:32:10 +0200
commitc05e9d52b2721d442c62e1ce4ed1058a756bf396 (patch)
treefe7075c906d2d8b6a455c5b2041b874a4d1af58b /src/plugins/ios/iostoolhandler.cpp
parent810274d038dc1daf22db42de1b5318d5157ffb85 (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.cpp5
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;
}