Disable clang-tidy for now (too verbose)

This commit is contained in:
Sebastian Messmer 2017-12-02 18:43:44 +00:00
parent d90e27eb11
commit e736d249f2

View File

@ -54,10 +54,10 @@ function(target_enable_style_warnings TARGET)
target_compile_options(${TARGET} PRIVATE -Wall -Wextra)
# Enable clang-tidy
set_target_properties(
${TARGET} PROPERTIES
CXX_CLANG_TIDY "${DO_CLANG_TIDY}"
)
#set_target_properties(
# ${TARGET} PROPERTIES
# CXX_CLANG_TIDY "${DO_CLANG_TIDY}"
#)
endfunction(target_enable_style_warnings)
##################################################