Skip to content
Snippets Groups Projects
Commit 1ed3298a authored by con's avatar con
Browse files

Fixes: Correct path for qtcreator_process_stub on Mac

RevBy:    Ossi
parent 70b399a3
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,12 @@ bool ConsoleProcess::start(const QString &program, const QStringList &args)
}
QStringList xtermArgs;
xtermArgs << "-e" << (QCoreApplication::applicationDirPath() + "/qtcreator_process_stub")
xtermArgs << "-e"
#ifdef Q_OS_MAC
<< (QCoreApplication::applicationDirPath() + "/../Resources/qtcreator_process_stub")
#else
<< (QCoreApplication::applicationDirPath() + "/qtcreator_process_stub")
#endif
<< (m_debug ? "debug" : "exec")
<< m_stubServer.fullServerName()
<< tr("Press <RETURN> to close this window...")
......
IDE_BUILD_TREE=../../../
include(../../qworkbench.pri)
TEMPLATE = app
TARGET = qtcreator_process_stub
DESTDIR = ../../../bin
macx {
DESTDIR = $$IDE_BUILD_TREE/bin/$${IDE_APP_TARGET}.app/Contents/Resources
} else {
DESTDIR = ../../../bin
}
CONFIG += warn_on console use_c_linker
CONFIG -= qt app_bundle
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment