blob: 7f2a139b7a0a5df7976e2c9fcc9b2d0c39cc1459 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
@ECHO off
SETLOCAL enableextensions enabledelayedexpansion
PUSHD .
CD /d "%~dp0\.."
REM --------------------------------------------------------------------------------------
REM Runs clang format on all the C++ files in the project
REM --------------------------------------------------------------------------------------
WHERE /Q clang-format
IF %ERRORLEVEL% NEQ 0 (
ECHO Could not find clang-format
PAUSE
POPD
ENDLOCAL
EXIT /B %ERRORLEVEL%
)
CALL :RunClangFormatOnDirectories ^
include\toml++ ^
include\toml++\impl ^
tests ^
examples
POPD
@ENDLOCAL
EXIT /B 0
:RunClangFormatOnDirectories
(
FOR %%i IN (%*) DO (
IF EXIST "%%~i" (
ECHO Formatting files in "%%~i"
clang-format --style=file -i "%%~i\*.cpp" >nul 2>&1
clang-format --style=file -i "%%~i\*.h" >nul 2>&1
clang-format --style=file -i "%%~i\*.hpp" >nul 2>&1
clang-format --style=file -i "%%~i\*.inl" >nul 2>&1
)
)
EXIT /B
)
|