Qt program from linux to windows
Solved
General and Desktop
-
-
You don't need to build the entire library yourself, there are pre-compiled binaries available here: https://www.qt.io/download-open-source/#section-2
to build your project then you'll just need to call the usual
qmake
andmingw32-make
instead of justmake
as on linux -
Hi,
Yes:
- Install the Qt MinGW package (with the MinGW provided)
- Open your project with Qt Creator
- Build/run/test
- Prepare for deployment. For that use windeployqt
-
I download QT with MinGW for windows and I build ,run my project in Release mode .exe was make, I added .dll and platform folder to open myproject.exe in other PC it is open and work but with myproject.exe a was black window, why this window was open??how can I open myproject.exe without this window??
-
Any chance that you have
CONFIG += console
in your .pro file ? -
Then remove it