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
Marco Bubke
flatpak-qt-creator
Commits
04b3eda8
Commit
04b3eda8
authored
Oct 05, 2009
by
dt
Browse files
Don't add build steps for projects without buildconfigurations
parent
e62f7cee
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/buildmanager.cpp
View file @
04b3eda8
...
...
@@ -332,9 +332,11 @@ void BuildManager::buildProjects(const QList<Project *> &projects, const QList<Q
end
=
projects
.
constEnd
();
for
(
it
=
projects
.
constBegin
();
it
!=
end
;
++
it
,
++
cit
)
{
QList
<
BuildStep
*>
buildSteps
=
(
*
it
)
->
buildSteps
();
foreach
(
BuildStep
*
bs
,
buildSteps
)
{
buildQueueAppend
(
bs
,
*
cit
);
if
(
*
cit
!=
QString
::
null
)
{
QList
<
BuildStep
*>
buildSteps
=
(
*
it
)
->
buildSteps
();
foreach
(
BuildStep
*
bs
,
buildSteps
)
{
buildQueueAppend
(
bs
,
*
cit
);
}
}
}
startBuildQueue
();
...
...
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