option(ENABLE_CPPCHECK "Enable static analysis with cppcheck" OFF) option(ENABLE_CLANG_TIDY "Enable static analysis with clang-tidy" OFF) option(ENABLE_INCLUDE_WHAT_YOU_USE "Enable static analysis with include-what-you-use" OFF) if(ENABLE_CPPCHECK) find_program(CPPCHECK cppcheck) if(CPPCHECK) set(CMAKE_CXX_CPPCHECK ${CPPCHECK} --suppress=missingInclude --enable=all --inline-suppr --inconclusive) if(WARNINGS_AS_ERRORS) list(APPEND CMAKE_CXX_CPPCHECK --error-exitcode=2) endif() else() message(SEND_ERROR "cppcheck requested but executable not found") endif() endif() if(ENABLE_CLANG_TIDY) find_program(CLANGTIDY clang-tidy) if(CLANGTIDY) set(CMAKE_CXX_CLANG_TIDY ${CLANGTIDY} -extra-arg=-Wno-unknown-warning-option) if(WARNINGS_AS_ERRORS) list(APPEND CMAKE_CXX_CLANG_TIDY -warnings-as-errors=*) endif() else() message(SEND_ERROR "clang-tidy requested but executable not found") endif() endif() if(ENABLE_INCLUDE_WHAT_YOU_USE) find_program(INCLUDE_WHAT_YOU_USE include-what-you-use) if(INCLUDE_WHAT_YOU_USE) set(CMAKE_CXX_INCLUDE_WHAT_YOU_USE ${INCLUDE_WHAT_YOU_USE}) else() message(SEND_ERROR "include-what-you-use requested but executable not found") endif() endif()