From 3ac95ed8c87f5b5233503b93deb2d9d65e06f32b 2017-08-24 09:40:52 From: Alexis Jeandet Date: 2017-08-24 09:40:52 Subject: [PATCH] Meson: Removed build_by_default for cppcheck target. Signed-off-by: Alexis Jeandet --- diff --git a/meson.build b/meson.build index 58abfea..5550f31 100644 --- a/meson.build +++ b/meson.build @@ -30,7 +30,6 @@ cppcheck = find_program('cppcheck', required : false) if cppcheck.found() run_target('cppcheck', command : [cppcheck, '--enable=all', - '--project=' + join_paths(meson.build_root(), 'compile_commands.json')], - build_by_default : true + '--project=' + join_paths(meson.build_root(), 'compile_commands.json')] ) endif