diff options
author | Loïc Hoguin <[email protected]> | 2020-04-17 16:46:04 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2020-04-17 16:46:04 +0200 |
commit | 20e12ce0337b6ee687424d7b9ab87f2f1e809353 (patch) | |
tree | aae0e3979c8dbbc30312395b29f892644485f3a2 | |
parent | 2d006796921bae7250d5c273fa61bd5f1e1e4541 (diff) | |
download | esdl2-20e12ce0337b6ee687424d7b9ab87f2f1e809353.tar.gz esdl2-20e12ce0337b6ee687424d7b9ab87f2f1e809353.tar.bz2 esdl2-20e12ce0337b6ee687424d7b9ab87f2f1e809353.zip |
Fix the cppcheck command
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -42,9 +42,8 @@ ci-setup:: distclean-c_src-env check:: cppcheck scan-build cppcheck: - $(gen_verbose) cppcheck -f -q --error-exitcode=2 \ - --enable=warning,style --inconclusive --std=posix \ - $(firstword $(SDL2_CFLAGS)) -U_System -USDL_CreateThread c_src/ + $(gen_verbose) cppcheck -f -q --error-exitcode=2 --enable=warning,style --inconclusive \ + -I$(DEPS_DIR)/nif_helpers $(firstword $(SDL2_CFLAGS)) -U_System -USDL_CreateThread c_src/ scan-build: $(verbose) $(MAKE) clean |