Configure QtCreator to crosscompile from Linux to Windows using mingw32
Hi, I am working on debian 8 64 bit and I try to configure Qt Creator to crosscompile pure c++ application from linux to windows.
So far I downloaded mingw32 and successfully compiled simple "Hello World" c++ application by means of command
Code:
/usr/bin/x86_64-w64-mingw32-g++ main.cpp -o windows_64.exe
File windows_64.exe works properly on Windows.
And now question how I can configure QtCreator to crosscompile from linux to windows?
Re: Configure QtCreator to crosscompile from Linux to Windows using mingw32
QtCreator configured projects with "Kits", where each kit is a combination of a Qt version and a compiler.
Create a Qt build that is built with that compiler and then add this Qt version to creator, the compiler and create a kit for that combination.
Cheers,
_