Last change
on this file since 418 was 324, checked in by Sanahuja Guillaume, 5 years ago |
removing opencv dependency
|
-
Property svn:executable
set to
*
|
File size:
412 bytes
|
Line | |
---|
1 | #! /bin/sh
|
---|
2 | DIR=$1
|
---|
3 | if [ ! -d $DIR ]; then
|
---|
4 | echo "Directory $DIR not found"
|
---|
5 | exit 1
|
---|
6 | fi
|
---|
7 | CLANG_FORMAT_CMD=$(locate --regex /clang-format$)
|
---|
8 | if [ $? -ne 0 ]; then
|
---|
9 | echo "clang-format command not found. Please install it before running this script."
|
---|
10 | exit 2
|
---|
11 | else
|
---|
12 | echo "clang-format binary used is $CLANG_FORMAT_CMD"
|
---|
13 | fi
|
---|
14 |
|
---|
15 | find $DIR \( -name '*.h' -o -name '*.cpp' \) -execdir $CLANG_FORMAT_CMD -style=llvm -i {} +
|
---|
16 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.