EasyGen/rununcrustify.bat

18 lines
358 B
Batchfile
Raw Permalink Normal View History

2014-01-13 22:49:01 +00:00
@echo off
@setLocal EnableDelayedExpansion
set batloc=%~dp0
set easygensource=%batloc%
CALL:UNCRUSTCODE
GOTO:EOF
:UNCRUSTCODE
echo Starting uncrustify %easygensource%
FOR /R "%easygensource%\src" %%G IN (*.h *.c *.cpp *.glsl) DO call:UNCRUSTFILE %%G
GOTO:EOF
:UNCRUSTFILE
echo %~1
uncrustify --no-backup -c %easygensource%\uncrustify.cfg %~1
GOTO:EOF