mirror of
https://github.com/marzer/tomlplusplus.git
synced 2024-11-02 02:26:28 +00:00
20 lines
428 B
Batchfile
20 lines
428 B
Batchfile
|
@ECHO off
|
||
|
SETLOCAL enableextensions enabledelayedexpansion
|
||
|
PUSHD .
|
||
|
CD /d "%~dp0"
|
||
|
|
||
|
REM --------------------------------------------------------------------------------------
|
||
|
REM Invokes generate_single_header.py.
|
||
|
REM --------------------------------------------------------------------------------------
|
||
|
|
||
|
py generate_single_header.py %*
|
||
|
if %ERRORLEVEL% NEQ 0 (
|
||
|
PAUSE
|
||
|
GOTO FINISH
|
||
|
)
|
||
|
|
||
|
:FINISH
|
||
|
POPD
|
||
|
@ENDLOCAL
|
||
|
EXIT /B %ERRORLEVEL%
|