ref: 2ad189c0a88b07264a8af70e3343dfff8e9500d2
dir: /win32/genversion.bat/
@echo off
for /f %%v in ('git describe --tags --match "v*" --always') 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