PDA

View Full Version : QMake Problem



KyrinComa
17th May 2006, 01:02
when I do C:\> qmake -project it just hangs there :( I even restarted and it still does it. I compiled it from source with MSVC2005 Pro and iono why it does it but it don't under MinGW

jacek
17th May 2006, 01:46
Does it "hang" when you invoke it from a directory that has no subdirectories?

KyrinComa
17th May 2006, 02:03
i was doing it in C:\ and it had subdirs so i created c:\sample then it worked i think this is really dumb but hey atleast i finally got Qt working and can read the book

NormanDunbar
17th May 2006, 12:36
i was doing it in C:\ and it had subdirs so i created c:\sample then it worked i think this is really dumb but hey atleast i finally got Qt working and can read the book

Been there, fell for it myself !

Qmake, by default, will recurse through all subdirectories. To stop it doing this,

qmake [mode] -norecursive [filenames]

Where mode is -project or -makefile as normal.


HTH

Cheers,
Norman.