File: generate_single_header.bat

package info (click to toggle)
tomlplusplus 3.3.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,184 kB
  • sloc: cpp: 35,145; ansic: 2,220; python: 983; makefile: 25; sh: 17
file content (19 lines) | stat: -rw-r--r-- 428 bytes parent folder | download | duplicates (2)
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%