Проверка с помощью clazy

This commit is contained in:
Andrei Astafev 2019-06-15 16:16:27 +03:00
parent e49aead06f
commit 6afe94efaf
2 changed files with 18 additions and 0 deletions

17
CMLibClazy.cmake Normal file
View File

@ -0,0 +1,17 @@
function(add_clazy_check)
list(GET ARGN 0 _target)
set(_sources ${ARGN})
list(REMOVE_AT _sources 0)
find_program(CLAZY_EXE
NAMES clazy-standalone)
if(CLAZY_EXE)
add_custom_target(clazy-check
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMAND ${CLAZY_EXE} -extra-arg="-Wno-unknown-warning-option" -p ${CMAKE_BINARY_DIR} ${_sources})
add_dependencies(clazy-check ${_target})
else()
message(WARNING "Clazy is not found")
endif()
endfunction()

View File

@ -32,6 +32,7 @@ include(CMLibCommonLibraryTarget)
include(CMLibBuildTypes) include(CMLibBuildTypes)
include(CMLibCodeAnalysisPvsStudio) include(CMLibCodeAnalysisPvsStudio)
include(CMLibClangTidy) include(CMLibClangTidy)
include(CMLibClazy)
include(cotire) include(cotire)
include(CMLibBreathe) include(CMLibBreathe)