Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
1ed3298a
Commit
1ed3298a
authored
Mar 11, 2009
by
con
Browse files
Fixes: Correct path for qtcreator_process_stub on Mac
RevBy: Ossi
parent
70b399a3
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/libs/utils/consoleprocess_unix.cpp
View file @
1ed3298a
...
...
@@ -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..."
)
...
...
src/libs/utils/process_stub.pro
View file @
1ed3298a
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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment