Hi, I have a large cmake project and I'd like to integrate cppcheck into my IDE/editor. From cmake it's easy to generate all required compiler flags into compile_commands.json. This is then easliy loaded into cppcheck (on commandline) but this also automatically scans all files defined in the json file. Ideally, I'd like to run cppcheck on a single file but using the compiler flags from compile_commands.json on the command line. Is this somehow possible? I could find a way yet. Additionally, is it...