Skip to content

Commit

Permalink
Makefile - fix checked clang-tidy directories
Browse files Browse the repository at this point in the history
  • Loading branch information
SiskaPavel committed Oct 3, 2024
1 parent e105edc commit 5ffb76d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ ifeq ($(RUN_CLANG_TIDY),)
RUN_CLANG_TIDY := run-clang-tidy
endif

HEADE_FILTER = "$(shell pwd)/src|$(shell pwd)/include"
SOURCE_DIR = "$(shell pwd)/src" "$(shell pwd)/include"
SRC_DIR = "$(shell pwd)/src"
INC_DIR = "$(shell pwd)/include"

HEADE_FILTER = "$(SRC_DIR)|$(INC_DIR)"
SOURCE_DIR = "$(SRC_DIR)" "$(INC_DIR)"
SOURCE_REGEX = '.*\.\(cpp\|hpp\)'

.PHONY: all
Expand Down

0 comments on commit 5ffb76d

Please sign in to comment.