Deploy Qt project to Windows From Mac OSX

2.3k Views Asked by At

I am working on MAC OSX Snow Leopard and I want to deploy my project onto Windows

It is a Qt Desktop app

  1. How do I generate the .exe file (+other dependencies if any)
  2. Any method to package all the .exe + dlls into one package for installation

Note: I would rather not install Qt SDK on windows and copy the project files to it and then build it.

Need solution for 1 and better if you answer 1 & 2 questions

2

There are 2 best solutions below

0
On BEST ANSWER

Ok after few days of searching and tweaking i compiled a solution for my problem and written in most concise form for my fellow friends who are stuck in similar situation , visit Here

You would need

  1. mingw-get-inst
  2. Qt libraries 4.8.2 for Windows (or Higher Version)
  3. Your .proj file (Associated .ui, .cpp, .h etc)

and its a two stage procedure , initially you need to download and install above listed 1 and 2 and setup the required environment and then make and build on the targeted windows system

2
On

The first step is relatively easy.

Go here http://crossgcc.rts-software.org/doku.php and grab a precompiled MinGW package (or looks for the mingw-w64 package at sourceforge and compile it yourself if you need to produce 64-bit executables).

Then compile all the dependencies you need (or use the prebuilt win32 libs).

At last, use the makefiles to build win32 executable on your MacOSX machine.

The second step - that depends. I haven't heard of any packagers for OSX capable of producing .msi or .exe installer, but it does not mean there aren't any. Maybe some kind of cross-compiled NSIS might help (but if this depends on WinAPI heavily at least WINE libs would be required).

EDIT: looks like building NSIS is a viable option for packaging the installer on OSX.