rem @echo off set buildtype=Release set creasourcefolder=crea set creabinfolder=creaBin set bbtksourcefolder=bbtk set bbtkbinfolder=bbtkBin set creamaracassourcefolder=creaMaracasVisu set creamaracasbinary=creaMaracasVisuBin set creaenvironmentsource=creaEnvironment set creaenvironmentbinary=creaEnvironmentBin set creabrukersource=creaBruker set creabrukerbinary=creaBrukerBin set creaimagesourcefolder=creaImageIO set creaimagebinary=creaImageIOBin set creacontourssource=creaContours set creacontoursbinary=creaContoursBin set crearigidregistrationssource=creaRigidRegistration set crearigidregistrationbinary=creaRigidRegistrationBin set bbtkgeditorsource=bbtkGEditor set bbtkgeditorbinary=bbtkGEditorBin set creatoolssource=creaTools set creatoolsbinary=creaToolsBin call cvscheckout.bat %creasourcefolder% call cvscheckout.bat %bbtksourcefolder% call cvscheckout.bat %creamaracassourcefolder% call cvscheckout.bat %creaenvironmentsource% call cvscheckout.bat %creabrukersource% call cvscheckout.bat %creaimagesourcefolder% call cvscheckout.bat %creacontourssource% call cvscheckout.bat %crearigidregistrationssource% call cvscheckout.bat %bbtkgeditorsource% call cvscheckout.bat %creatoolssource% rem CREA call cmakemod.bat %creasourcefolder% %creabinfolder% call creaVariables.bat %creabinfolder% %creasourcefolder% call compilemod.bat %buildtype% %creabinfolder% call ctestmod.bat %creabinfolder% set creadll=%~dp0 set creadll=%creadll%%creabinfolder%\%buildtype% set PATH=%creadll%;%PATH% rem BBTK call cmakemod.bat %bbtksourcefolder% %bbtkbinfolder% call bbtkVariables.bat %bbtkbinfolder% %creabinfolder% call compilemod.bat %buildtype% %bbtkbinfolder% call ctestmod.bat %bbtkbinfolder% set bbtkdll=%~dp0 set bbtkdll=%bbtkdll%%bbtkbinfolder%\%buildtype% set PATH=%bbtkdll%;%PATH% rem creaMaracasVisu call cmakemod.bat %creamaracassourcefolder% %creamaracasbinary% call creaMaracasVariables.bat %creamaracasbinary% %creabinfolder% %bbtkbinfolder% call compilemod.bat %buildtype% %creamaracasbinary% call ctestmod.bat %creamaracasbinary% set creamaracasdll=%~dp0%creamaracasbinary%\%buildtype% set PATH=%creamaracasdll%;%PATH% rem creaEnvironment call cmakemod.bat %creaenvironmentsource% %creaenvironmentbinary% call creaenvironmentVariables.bat %creaenvironmentbinary% %creabinfolder% call compilemod.bat %buildtype% %creaenvironmentbinary% call ctestmod.bat %creaenvironmentbinary% set creaenvironmentdll=%~dp0%creaenvironmentbinary%\%buildtype% set PATH=%creaenvironmentdll%;%PATH% rem creaBruker call cmakemod.bat %creabrukersource% %creabrukerbinary% call creaenvironmentVariables.bat %creabrukerbinary% %creabinfolder% call compilemod.bat %buildtype% %creabrukerbinary% call ctestmod.bat %creabrukerbinary% set creabrukerdll=%~dp0%creabrukerbinary%\%buildtype% set PATH=%creabrukerdll%;%PATH% rem creaImageIO call cmakemod.bat %creaimagesourcefolder% %creaimagebinary% call creaImageIOVariables.bat %creaimagebinary% %creabinfolder% %bbtkbinfolder% %creabrukerbinary% call compilemod.bat %buildtype% %creaimagebinary% call ctestmod.bat %creaimagebinary% set creaimagedll=%~dp0%creaimagebinary%\%buildtype% set PATH=%creaimagedll%;%PATH% rem creaContours call cmakemod.bat %creacontourssource% %creacontoursbinary% call creaContoursVariables.bat %creacontoursbinary% %creasourcefolder% %creaenvironmentsource% %creamaracassourcefolder% %creaimagesourcefolder% %bbtksourcefolder% call compilemod.bat %buildtype% %creacontoursbinary% call ctestmod.bat %creacontoursbinary% rem set creacontourdll=%~dp0%creacontoursbinary%\%buildtype% rem set PATH=%creacontoursdll%;%PATH% rem creaRigidRegistration call cmakemod.bat %crearigidregistrationssource% %crearigidregistrationbinary% call creaRigidRegistrationVariables.bat %crearigidregistrationbinary% %creabinfolder% %bbtksourcefolder% call compilemod.bat %buildtype% %crearigidregistrationbinary% call ctestmod.bat %crearigidregistrationbinary% rem set crearigidregistrationdll=%~dp0%crearigidregistrationbinary%\%buildtype% rem set PATH=%crearigidregistrationdll%;%PATH% rem bbtkGEditor call cmakemod.bat %bbtkgeditorsource% %bbtkgeditorbinary% call bbtkGEditorVariables.bat %bbtkgeditorbinary% %creasourcefolder% %bbtksourcefolder% %creamaracassourcefolder% call compilemod.bat %buildtype% %bbtkgeditorbinary% call ctestmod.bat %bbtkgeditorbinary% rem set bbtkgeditordll=%~dp0%bbtkgeditorbinary%\%buildtype% rem set PATH=%bbtkgeditordll%;%PATH% rem creaTools call cmakemod.bat %creatoolssource% %creatoolsbinary% call creaToolsVariables.bat %creatoolsbinary% call compilemodCreaTools.bat %buildtype% %creatoolsbinary% rem remcall ctestmod.bat %creatoolsbinary% set creatoolsdll=%~dp0%creatoolsbinary%\%buildtype% set PATH=%creatoolssdll%;%PATH% rem shutdown /s exit /b