PDA

View Full Version : specifying VS build order within pro file?



barrygp
25th August 2009, 15:08
Is there a solution for setting the Visual Studio project build order either from within the pro file or otherwise. Does anyone know if there is a script or automated way to do this?

Thanks,

--Greg

nightghost
25th August 2009, 16:16
win32:TEMPLATE = vcsubdirs

CONFIG += ordered

unix {
SUBDIRS += project_last
SUBDIRS += project_first
}

barrygp
28th August 2009, 19:29
Thanks.. will this work with Visual Studio or just Visual Studio .NET... we do not have .NET.. also.. we have TEMPLATE in our .pro files.. and specify vc on out qmake command line.. will the -tp vc automatically add the vc to the siubdirs?
The reason I ask is that I did not see any changes in the build order.. thanks again.

barrygp
17th December 2009, 21:22
This is still an issue.. any help on specifying build order that carries over to Visual studios?

thanks again,

--greg