tags:

views:

1028

answers:

2

Can i use QT Creator in Linux just to create executable for Windows.??? or is Cross compiler must to use??

I guess QT creator in Linux will be having an option to build code for windows?? if i'm wrong pls do suggest me

waitn for reply...

+2  A: 

Qt Creator is just an IDE it does not necessarily come with a compiler, though it can be set up to use various compilers like the GCC or a cross compiler.

You can compile applications for windows on linux using a cross compiler. One such cross compiler is the Minimalist GNU win32 (cross) compiler in which case this link will should be useful to you. It would probably be safe to assume that most distro's have a packaged version which you can use. If they do use that instead, usually searching the package management system for 'mingw' is enough to find it.

Mike Lowen
A: 

I wonder if this will help you

Here Be Wolves