Update compilation
Some checks failed
Bigfoot / build-and-test (Debug, ON) (push) Successful in 25s
Bigfoot / build-and-test (RelWithDebInfo, OFF) (push) Successful in 27s
Bigfoot / build-and-test (RelWithDebInfo, ON) (push) Successful in 25s
Bigfoot / build-and-test (Release, OFF) (push) Successful in 20s
Bigfoot / build-and-test (Release, ON) (push) Has been cancelled
Bigfoot / build-and-test (Debug, OFF) (push) Successful in 26s

This commit is contained in:
2026-01-28 14:28:07 +01:00
parent a114ae2410
commit f3a1c7ec36
68 changed files with 1576 additions and 531 deletions

View File

@@ -4,8 +4,8 @@ SET FMT=clang-format
REM Function to format files
:format
for /r %%f in (*.h *.m *.mm *.c *.cpp) do (
echo %%~nxf | findstr /i "_generated.h$" >nul
for /r %%f in (*.h *.hpp *.m *.mm *.c *.cpp) do (
echo %%~nxf | findstr /i "_generated$" >nul
if errorlevel 1 (
echo format %%f
%FMT% -i "%%f"