Skip to content

Commit

Permalink
fix: enable clang tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
luishfonseca committed Sep 25, 2023
1 parent eb1505a commit d946246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function(cubos_common_target_options target)
# Enable clang-tidy
find_program(CLANG_TIDY_EXE NAMES "clang-tidy")
if(CLANG_TIDY_EXE)
option(USE_CLANG_TIDY ON)
option(USE_CLANG_TIDY "Enable clang-tidy" ON)
if(USE_CLANG_TIDY)
set(CLANG_TIDY_COMMAND "${CLANG_TIDY_EXE}")
if(FIX_CLANG_TIDY_ERRORS)
Expand Down

0 comments on commit d946246

Please sign in to comment.