SubtitleEdit/build_helpers.bat

43 lines
966 B
Batchfile
Raw Normal View History

2014-09-11 07:08:05 +02:00
@ECHO OFF
SETLOCAL
PUSHD %~dp0
SET "ConfigurationName=%~2"
2014-09-11 07:08:05 +02:00
2020-11-19 22:14:25 +01:00
ECHO %cd%
2014-09-11 07:08:05 +02:00
IF /I "%~1" == "lang" GOTO UpdateLanguageFiles
IF /I "%~1" == "rev" GOTO UpdateAssemblyInfo
:END
POPD
ENDLOCAL
EXIT /B
:UpdateLanguageFiles
SET "ToolPath=src\UpdateLanguageFiles\bin\%ConfigurationName%\UpdateLanguageFiles.exe"
IF NOT EXIST "%ToolPath%" (
2020-11-19 22:10:59 +01:00
ECHO Compile Subtitle Edit first!
2014-09-11 07:08:05 +02:00
GOTO END
)
"%ToolPath%" "LanguageBaseEnglish.xml" "src\ui\Logic\LanguageDeserializer.cs"
2014-09-11 07:08:05 +02:00
IF %ERRORLEVEL% NEQ 0 (
ECHO ERROR: Something went wrong when generating the language files...
)
GOTO END
:UpdateAssemblyInfo
SET "ToolPath=src\UpdateAssemblyInfo\bin\%ConfigurationName%\UpdateAssemblyInfo.exe"
IF NOT EXIST "%ToolPath%" (
2020-11-19 22:10:59 +01:00
ECHO Compile Subtitle Edit first!
2014-09-11 07:08:05 +02:00
GOTO END
)
2020-11-19 22:28:23 +01:00
"%ToolPath%" "src\ui\Properties\AssemblyInfo.cs.template" "src\libse\Properties\AssemblyInfo.cs.template"
2014-09-11 07:08:05 +02:00
IF %ERRORLEVEL% NEQ 0 (
ECHO ERROR: Something went wrong when generating the revision number...
)
GOTO END