mirror of
https://github.com/Vita3K/Vita3K.git
synced 2026-07-11 01:34:23 +02:00
2daa6d39d4
* Ported format.sh to Windows. * Added empty ending line. * Shutting echoing to console.
9 lines
251 B
Batchfile
9 lines
251 B
Batchfile
@echo off
|
|
cd src\emulator
|
|
for /f %%f in ('dir *.cpp *.h /b/s') do clang-format -i %%f
|
|
cd ..\gen-modules
|
|
for /f %%f in ('dir *.cpp *.h /b/s') do clang-format -i %%f
|
|
cd ..\native-tool
|
|
for /f %%f in ('dir *.cpp *.h /b/s') do clang-format -i %%f
|
|
cd ..\..
|