Realtek/tool/Gadgets/version_generation/SvnGenerateVersion.bat

19 lines
371 B
Batchfile
Raw Normal View History

2025-11-25 10:21:47 +08:00
@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