Linux/Win32 qmake error
Hi,
I'm currently using qt-4.2.1 with gcc 4.1.2.
I've developped an application which is working fine with centOS 5.
I would like to make it working on a windows vista station.
From my linux station, I typed as usual
> qmake -project
which generated the .pro file
then instead of simply typing
> qmake
I used
> qmake -win32
This way I thought that I will get a Makefile to build my Window application...but I get a very long list of warning, like :
WARNING: Failure to find: src\appl\v2c_gui\v2c_gui.cpp
WARNING: Failure to find: src\cub\Brick\brick.cpp
WARNING: Failure to find: src\cub\Buffer\buffer.cpp
[...]
So do you have any idea why this is not working in win32 mode but work in linux mode?
Do I need to edit the .pro file to give full pathname?
Do I need to edit my .h files to give full pathname for the include : (ie #include "brick.h" -> #include "../../obj/Brick/brick.h" ?
Thanks,