Files
openvins_linux/run_format.sh
2022-08-05 08:23:25 +03:00

9 lines
227 B
Bash
Executable File

# sudo apt install clang-format
find . -regex '.*\.\(cpp\|hpp\|cu\|c\|h\)' -exec clang-format -style=file -i {} \;
# sudo apt install libc++-dev clang-tidy
#find . -regex '.*\.\(cpp\|hpp\|cu\|c\|h\)' -exec clang-tidy {} \;