Files
scummvm/tools/create_project/scripts/prebuild.cmd
T
Julien Templier 569ad6caba TOOLS: Extract revision from svn/hg/git at build time in Visual Studio
- Simplify custom file output (for VS2010)
 - Fix postbuild.cmd error output

svn-id: r54423
2010-11-23 11:14:17 +00:00

28 lines
626 B
Batchfile

@echo off
REM ---------------------------------------------------------------
REM -- Pre-Build Script
REM ---------------------------------------------------------------
REM
REM Generate file with proper revision number
REM
REM Expected parameters
REM Root folder
if "%~1"=="" goto error_input
REM Run the revision script
@call cscript "%~1/tools/create_project/scripts/revision.vbs" %~1 1>NUL
if not %errorlevel% == 0 goto error_script
goto done
:error_output
echo Invalid root folder (%~1)!
goto done
:error_script:
echo An error occured while running the revision script!
:done
exit /B0