2009-02-06 13:37:46 +00:00
|
|
|
contains( OPENFLIPPER , OpenFlipper ){
|
|
|
|
|
include( $$TOPDIR/qmake/all.include )
|
|
|
|
|
} else {
|
|
|
|
|
include( $$TOPDIR/OpenMesh/qmake/all.include )
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Subdirs()
|
|
|
|
|
|
|
|
|
|
addSubdirs( Core )
|
|
|
|
|
addSubdirs( Tools , Core )
|
|
|
|
|
|
2009-02-09 07:58:51 +00:00
|
|
|
addSubdirs( Apps/Decimating/commandlineDecimater , Core Tools)
|
|
|
|
|
addSubdirs( Apps/Decimating/DecimaterGui , Core Tools)
|
2009-02-06 13:37:46 +00:00
|
|
|
addSubdirs( Apps/mconvert , Core Tools)
|
|
|
|
|
addSubdirs( Apps/QtViewer , Core Tools)
|
|
|
|
|
addSubdirs( Apps/Smoothing , Core Tools)
|
2009-02-09 07:58:51 +00:00
|
|
|
addSubdirs( Apps/Subdivider/commandline , Core Tools)
|
|
|
|
|
addSubdirs( Apps/Subdivider/commandlineAdaptive , Core Tools)
|
|
|
|
|
addSubdirs( Apps/Subdivider/gui , Core Tools)
|
2009-02-06 13:37:46 +00:00
|
|
|
|
|
|
|
|
win32 {
|
|
|
|
|
!ReleaseBuild{
|
|
|
|
|
!DebugBuild {
|
|
|
|
|
MAKECMD = c:\qt4\bin\qmake.exe
|
|
|
|
|
|
2009-02-09 07:58:51 +00:00
|
|
|
CORELIST += Core Tools Apps/Decimating/commandlineDecimater Apps/Decimating/DecimaterGui
|
|
|
|
|
CORELIST += Apps/mconvert Apps/QtViewer Apps/Smoothing
|
|
|
|
|
CORELIST += Apps/Subdivider/SubdividerGui Apps/Subdivider/commandlineSubdivider Apps/Subdivider/commandlineAdaptiveSubdivider
|
2009-02-06 13:37:46 +00:00
|
|
|
|
|
|
|
|
for(entry, CORELIST ): {
|
|
|
|
|
message( $$entry )
|
|
|
|
|
system( cd $$entry && $$MAKECMD )
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|