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
745dc1c8
Commit
745dc1c8
authored
Apr 01, 2010
by
Tobias Hunger
Browse files
Fix logic to handle symbian special case
Reviewed-by: Roberto Raggi
parent
49416fe8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt4target.cpp
View file @
745dc1c8
...
...
@@ -180,8 +180,8 @@ Qt4Target *Qt4TargetFactory::create(ProjectExplorer::Project *parent, const QStr
displayName
.
append
((
info
.
buildConfig
&
QtVersion
::
DebugBuild
)
?
tr
(
"Debug"
)
:
tr
(
"Release"
));
// Skip release builds for the symbian emulator.
if
(
id
!
=
QLatin1String
(
Constants
::
S60_EMULATOR_TARGET_ID
)
&&
!
(
info
.
buildConfig
|
QtVersion
::
DebugBuild
))
if
(
id
=
=
QLatin1String
(
Constants
::
S60_EMULATOR_TARGET_ID
)
&&
!
(
info
.
buildConfig
&
QtVersion
::
DebugBuild
))
continue
;
t
->
addQt4BuildConfiguration
(
displayName
,
info
.
version
,
info
.
buildConfig
,
info
.
additionalArguments
,
info
.
directory
);
...
...
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