33 lines
682 B
Batchfile
33 lines
682 B
Batchfile
@echo off
|
|
echo Inizio processing After Build: configurazione %1 , directory %2
|
|
|
|
if %1 == "Release" goto ReleaseExec
|
|
if %1 == Release goto ReleaseExec
|
|
if %1 == "Debug" goto DebugExec
|
|
if %1 == Debug goto DebugExec
|
|
if %1 == "Remote_DEBUG" goto RemoteDebugExec
|
|
if %1 == Remote_DEBUG goto RemoteDebugExec
|
|
|
|
:ReleaseExec
|
|
echo Release processing...
|
|
|
|
goto END
|
|
|
|
|
|
:DebugExec
|
|
echo Debug processing...
|
|
|
|
goto END
|
|
|
|
|
|
:RemoteDebugExec
|
|
echo Remote_DEBUG processing, effettuo copia script verso server remoto (ROBOCOPY)
|
|
|
|
REM IOB-WIN-SIM
|
|
echo Step3: ROBOCOPY %2 \\IOB-WIN-SIMULA\Steamware\IOB-MAN8 /MIR /XD CONF
|
|
ROBOCOPY %2 \\IOB-WIN-SIMULA\Steamware\IOB-MAN8 /MIR /XD CONF
|
|
|
|
goto END
|
|
|
|
:END
|
|
echo Fatto! |