shithub: opus-tools

ref: 4cc06a7f0fe7cd93196e3078bcf1b7c1b0e0c934
dir: /win32/genversion.bat/

View raw version
@echo off

for /f %%v in ('git describe --tags --match "v*"') do set version=%%v

set version_out=#define %2 "%version%"

echo %version_out% > %1_temp

echo n | comp %1_temp %1 > NUL 2> NUL

if not errorlevel 1 goto exit

copy /y %1_temp %1

:exit

del %1_temp