spelling fixes

This commit is contained in:
Karl Nilsson
2020-01-17 19:48:14 -05:00
parent 4c671bdbee
commit f1f7c85d95
20 changed files with 29 additions and 29 deletions

View File

@@ -23,7 +23,7 @@ macro(add_analysis _target _sources)
set(ALL_ANALYSIS_TARGETS "${ALL_ANALYSIS_TARGETS}" PARENT_SCOPE)
# This is used to make the command run correctly on the command line.
# The COMMAND argumetn expects a list and this does the change
# The COMMAND argument expects a list and this does the change
# I need to check which version works with 2.7
if (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VESION} GREATER 2.7)
separate_arguments(tmp_args UNIX_COMMAND ${CPPCHECK_ARG})

View File

@@ -12,11 +12,11 @@
find_program(CPPCHECK_BIN NAMES cppcheck)
#
# Arugments are
# Arguments are
# -j use multiple threads (and thread count)
# --quite only show errors / warnings etc
# --error-exitcode The code to exit with if an error shows up
# --enabled Comman seperated list of the check types. Can include warning,performance,style
# --enabled Comma separated list of the check types. Can include warning,performance,style
# Note nightly build on earth changes error-exitcode to 0
set (CPPCHECK_THREADS "-j 4" CACHE STRING "The -j argument to have cppcheck use multiple threads / cores")
@@ -34,4 +34,4 @@ FIND_PACKAGE_HANDLE_STANDARD_ARGS(
mark_as_advanced(
CPPCHECK_BIN
CPPCHECK_THREADS
CPPCHECK_ARG)
CPPCHECK_ARG)