]> Creatis software - creaToolsTools.git/blob - ctest/dashboard/compilemod.bat
a25d2298ad3aecd7df5343e3e89d80d1235ca261
[creaToolsTools.git] / ctest / dashboard / compilemod.bat
1 REM %1=buildtype  %2=<Module Sources Ex crea bbtk creaMaracasVisu ...>
2
3 cd %2Bin
4 call "C:\Program Files\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
5 FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%1
6 FOR /R %%a IN (*.sln) DO msbuild /p:Configuration=%1 INSTALL.vcproj
7 FOR /R %%a IN (*.sln) DO msbuild /p:Configuration=%1 PACKAGE.vcproj
8 copy %2*.exe ../Result_Installers/
9 cd ..