Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
390fff61
Commit
390fff61
authored
Apr 01, 2009
by
dt
Browse files
Also output which qmake is used to build the debugging lib.
Should help in debugging.
parent
72831061
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
390fff61
...
...
@@ -1453,7 +1453,7 @@ QString QtVersion::buildDebuggingHelperLibrary()
output
+=
QString
(
"Building debugging helper library in %1
\n
"
).
arg
(
directory
);
output
+=
"
\n
"
;
output
+=
"Runinng
qmake...
\n
"
;
output
+=
QString
(
"Runinng
%1 ...
\n
"
).
arg
(
qmakeCommand
())
;
QProcess
qmake
;
ProjectExplorer
::
Environment
env
=
ProjectExplorer
::
Environment
::
systemEnvironment
();
...
...
@@ -1487,7 +1487,7 @@ QString QtVersion::buildDebuggingHelperLibrary()
QString
makeFullPath
=
env
.
searchInPath
(
make
);
output
+=
"
\n
"
;
if
(
!
makeFullPath
.
isEmpty
())
{
output
+=
QString
(
"Running %1...
\n
"
).
arg
(
makeFullPath
);
output
+=
QString
(
"Running %1
...
\n
"
).
arg
(
makeFullPath
);
qmake
.
start
(
makeFullPath
,
QStringList
());
qmake
.
waitForFinished
();
output
+=
qmake
.
readAll
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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