summaryrefslogtreecommitdiff
path: root/tomlplusplus/tools/generate_single_header.bat
blob: 7fe0def0b58e38dad95c1f44088706a9cf7f19c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@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%