I have an old project that was originaly on Borland C++ with the Owl framework. Since a few years i migrated it to OwlNext and compiled with Rad Studio C++ builder. I need to scan it but it looks like CppCheck can read old CBuilder project fles but not Rad Studio project files. Any Hint ?? Tks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have an old project that was originaly on Borland C++ with the Owl framework. Since a few years i migrated it to OwlNext and compiled with Rad Studio C++ builder. I need to scan it but it looks like CppCheck can read old CBuilder project fles but not Rad Studio project files. Any Hint ?? Tks
No problem. Just tell Cppcheck where your source code is. Here is a suggestion.. feel free to tweak..
If you put your headers in some separate folder I'd suggest an additional
-I <path-to-your-includes>
.Last edit: Daniel Marjamäki 2021-06-18
Do I just give the root of my sources? Some files are located in sub folders. Same with my headers.
Last edit: Regis St-Gelais 2021-06-18
Yes, Cppcheck will look recursively in sub folders.
I was able to scan my code. Tks.