Qt creator can not create windows app - qt

When installed QT creator on my Ubuntu I was able to create simple console app gui app and so on .
But when I installed it on my windows , and trying to create a project QT asks for
target :
Symbian,
Qt simulator,
Harmattan
But I need a simple win console app.
What im doing wrong ?.

Are you sure you installed the correct version of the Qt SDK? There used to be a separate "Nokia Qt SDK" which only contained the libraries for the mobile targets.
This link should always point you to the latest installer for the complete Windows SDK.

Related

Submit Qt based app on Windows App

I have already created Qt based application which uses some third-party open source library like OpenCV, I have looked Windows Dev Center and seems the all the reference is using Visual Studios and other Windows tool. I have created my App using Qt creator. Is it possible to submit such an application on Windows App store?
Any help will be appreciated,
Thanks
Haris
Bad news: Microsoft does not support Win32 apps on AppStore yet (but it has been announced, currently under development as "Project Centennial"). It looks like an "old-school" desktop applications cannot be submitted to the Windows App store.
Good news: Qt has support for WinRT (complete in Qt 5.6 which is currently in Beta and will be released in a few weeks). And qmake can generate a Visual Studio solution from your project (in case you need it for deployment or debugging; VS Community edition is free).
Qt WinRT tutorial: http://doc.qt.io/qt-5/winrt-support.html
OpenCV in WinRT: https://msopentech.com/blog/2014/03/20/easily-build-opencv-powered-apps-for-windows-store/

Is porting QML based app easy to Windows Phone?

On the qt-project web-site there're available sources as for porting QML to iOS, Android.
http://qt-project.org/doc/qt-5/portingtoandroid.html
http://qt-project.org/doc/qt-5/porting-to-ios.html
It appears to be easy.
Is it so for Windows Phone as well?
Is it so for any other platform?
Qt Project has a Qt for WinRT tutorial providing a step-by-step process to build applications for Windows 8 based devices. Basically to resume the tutorial :
You need the appropriate windows runtime
You may have to build Qt from source for that runtime library
You develop and compile Qt as you would do for a desktop app
You have an additional step for packaging the application.

Mobile Qt Application missing in Qt Creator 2.5.2

On the new Qt Creator 2.5.2, I no longer see the option to create a Mobile Qt Application when starting a New Project.
I'm on Ubuntu 12.10, and I installed Qt Creator from the repositories.
This is what I see on Qt Creator 2.4.1. This here is on Windows, but Mobile Qt Application used to be available on Ubuntu as well:
Those options appear in the Creator that comes bundled with Nokia's Qt SDK (and yes that contains an older version of Qt Creator and desktop and mobile Qt framework), you can download that from here

Cant install Qt Application on Nokia device

From QtCreator I chose Mobile Gui Application and did not change a line of code. I built it using simulator and it works fine. When I try to deploy it on to my device I get a warning
'Application not compatible with Phone. Continue anyway.?' Obviously the app is not working on my device.
I have installed Nokia Qt SDK 1.1 and have installed Qt 4.7.3 ( including QtMobility and QtWebKit ) which comes with the SDK on to my device.
What am I doing wrong?
Thanks
Maybe this thread on forum nokia solves your issue. Which device do you have?

How can I package my qt application with Qt Creator in Nokia Qt SDK

I have written a simple qt application with qt creator, I have tested with PC simulation and N900 device, It's OK. Qt Creator created a .deb file in my mobile. but it can't be installed. The installer always complained "incompatible package...".
The SDK document says I can modify my application's version, or I can skip the package step in the project setting, but in my Qt creator, there is no these setting at all.
Can anyone help me, thanks! :)

Resources