-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformat_code.bat
More file actions
45 lines (33 loc) · 1.21 KB
/
format_code.bat
File metadata and controls
45 lines (33 loc) · 1.21 KB
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
42
43
@echo off
pushd "%~dp0"
echo Formatting Code....
clang-format -i app\*.cpp || goto error
clang-format -i test\*.cpp || goto error
clang-format -i src\*.cpp || goto error
clang-format -i inc\*.hpp || goto error
clang-format -i camera\src\*.cpp || goto error
clang-format -i camera\inc\*.hpp || goto error
clang-format -i camera\test\*.cpp || goto error
clang-format -i common\src\*.cpp || goto error
clang-format -i common\inc\*.hpp || goto error
clang-format -i common\test\*.cpp || goto error
clang-format -i serial\src\*.cpp || goto error
clang-format -i serial\inc\*.hpp || goto error
clang-format -i serial\test\*.cpp || goto error
echo Formatting CMake...
cmake-format -i CMakeLists.txt || goto error
cmake-format -i app\CMakeLists.txt || goto error
cmake-format -i test\CMakeLists.txt || goto error
cmake-format -i camera\CMakeLists.txt || goto error
cmake-format -i camera\test\CMakeLists.txt || goto error
cmake-format -i common\CMakeLists.txt || goto error
cmake-format -i common\test\CMakeLists.txt || goto error
cmake-format -i serial\CMakeLists.txt || goto error
cmake-format -i serial\test\CMakeLists.txt || goto error
echo "Reformatted everything."
exit /b 0
popd
:error
echo "An error occurred!"
popd
exit /b 1