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
Tobias Hunger
qt-creator
Commits
3c34649a
Commit
3c34649a
authored
Apr 01, 2010
by
Tobias Hunger
Browse files
Make sure to not add debug BCs twice
Reviewed-by: Roberto Raggi
parent
745dc1c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp
View file @
3c34649a
...
...
@@ -215,8 +215,9 @@ bool TargetSetupPage::setupProject(Qt4ProjectManager::Qt4Project *project)
const
ImportInfo
&
info
=
m_infos
.
at
(
child
->
data
(
0
,
Qt
::
UserRole
).
toInt
());
targetInfos
.
append
(
BuildConfigurationInfo
(
info
.
version
,
QtVersion
::
QmakeBuildConfigs
(
info
.
buildConfig
|
QtVersion
::
DebugBuild
),
info
.
additionalArguments
,
info
.
directory
));
if
((
info
.
buildConfig
|
QtVersion
::
DebugBuild
)
!=
info
.
buildConfig
)
targetInfos
.
append
(
BuildConfigurationInfo
(
info
.
version
,
QtVersion
::
QmakeBuildConfigs
(
info
.
buildConfig
|
QtVersion
::
DebugBuild
),
info
.
additionalArguments
,
info
.
directory
));
targetInfos
.
append
(
BuildConfigurationInfo
(
info
.
version
,
info
.
buildConfig
,
info
.
additionalArguments
,
info
.
directory
));
}
...
...
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