Realtek/tool/Gadgets/version_generation/SvnGenerateVersion.bat
2025-11-25 10:21:47 +08:00

19 lines
371 B
Batchfile

@ECHO OFF
SETLOCAL ENABLEEXTENSIONS
::-----------------------------
::Initialize script arguments
::-----------------------------
SET workDir=./
SET template=svn_version.template
SET target=version.h
::-----------------------------
:: Main entry
::-----------------------------
"SubWCRev.exe" %workDir% %template% %target% >NUL
type %target%
@ECHO ON