1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 06:10:50 +00:00
falk-werner_webfuse-provider/run-clang-tidy.sh
2019-02-22 22:59:10 +01:00

9 lines
256 B
Bash
Executable File

#!/bin/bash
#
# Helper to run clang-tidy to perform some additional checks.
FILES=$(find lib -name '*.c')
INCLUDES="-Iinclude -Ilib $(pkg-config fuse3 --cflags) $(pkg-config libwebsockets --cflags)"
clang-tidy -header-filter='.*' ${FILES} -- ${INCLUDES}