How to develop Qt application that can run on windows using ubuntu development environment
-
I am using ubuntu for develop Qt application. I need to create .exe file for run that application on windows. how i do it
-
I am using ubuntu for develop Qt application. I need to create .exe file for run that application on windows. how i do it
@deshanharshana Two options:
- Build the your source code on a Windows machine (virtual or physical) with pre-built Qt libraries and tools.
- Install MingW64 on Ubuntu to get a tool chain targeting Windows, cross-compile Qt from source to get a set of libraries for Windows, cross-compile your source code with the MingW tool chain and Qt libraries. You can try something like MXE to shortcut this process
The first option is generally far easier.