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
b76cf034
Commit
b76cf034
authored
Jul 28, 2010
by
ck
Browse files
Add Maemo support to QML standalone application wizard.
Reviewed-by: Alessandro Portale
parent
60f68080
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmlprojectmanager/wizards/templates/app.pro
View file @
b76cf034
...
...
@@ -45,14 +45,17 @@ symbian {
first
.
depends
=
$
(
first
)
copyqmlfiles
QMAKE_EXTRA_TARGETS
+=
first
copyqmlfiles
}
}
else
{
#
TODO
:
make
this
work
}
else
:
if
(
maemo5
|
maemo6
)
{
for
(
deploymentfolder
,
DEPLOYMENTFOLDERS
)
{
item
=
item
$$
{
deploymentfolder
}
itemfiles
=
$$
{
item
}.
files
$$
itemfiles
=
$$
{
deploymentfolder
}
itempath
=
$$
{
item
}.
path
$$
itempath
=
qml
$$
itempath
=
/
opt
/
share
/
qml
INSTALLS
+=
$$
item
}
target
.
path
=
/
opt
/
bin
INSTALLS
+=
target
}
else
{
#
TODO
:
make
this
work
}
src/plugins/qmlprojectmanager/wizards/templates/cpp/main.cpp
View file @
b76cf034
...
...
@@ -13,6 +13,8 @@ int main(int argc, char *argv[])
#ifdef Q_OS_SYMBIAN
qmlApp
.
showFullScreen
();
#elif defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6)
qmlApp
.
showMaximized
();
#else
qmlApp
.
setGeometry
(
QRect
(
100
,
100
,
360
,
640
));
qmlApp
.
show
();
...
...
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