Skip to content

Commit 525b7be

Browse files
committed
cppcheck: use --error-exitcode=2 to fail the build on errors
1 parent 5497ffe commit 525b7be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ if (SQLITECPP_RUN_CPPCHECK)
435435
# add a cppcheck target to the "all" target
436436
add_custom_target(SQLiteCpp_cppcheck
437437
ALL
438-
COMMAND ${CPPCHECK_EXECUTABLE} -j 8 cppcheck --enable=style --quiet ${CPPCHECK_ARG_TEMPLATE} ${PROJECT_SOURCE_DIR}/src
438+
COMMAND ${CPPCHECK_EXECUTABLE} -j 8 cppcheck --enable=style --quiet ${CPPCHECK_ARG_TEMPLATE} ${PROJECT_SOURCE_DIR}/src --error-exitcode=2
439439
)
440440
execute_process(COMMAND "${CPPCHECK_EXECUTABLE}" --version OUTPUT_VARIABLE CPPCHECK_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE)
441441
message(STATUS "Found Cppcheck: ${CPPCHECK_EXECUTABLE} (found version ${CPPCHECK_VERSION})")

0 commit comments

Comments
 (0)