We would like to use one SonarQube instance to analyze multiple projects. Some projects are C++ only, some are Objective-C/Swift; both kinds of projects have .h files in them. We are currently using the SonarCFamily C/C++ plugin for the C++ projects, which works well.
The problem is that when we tried enabling the SonarCFamily ObjC plugin, it started reporting issues for the C++ projects because it scans their .h files. Similarly we don’t want the C/C++ scanner to report issues for our Objective-C .h files.
We could not find a way to have different scanners run for different projects, and we couldn’t find a way to have the two scanners differentiate between the different kinds of .h files.
It seems like this should be possible, but what is the correct approach?
Is there any way to specify the C++ properties at a global level? The problem is that we already have a ton of C++ projects being scanned. For your approach to work we would first have to update all of their project properties before we can enable the ObjC plugin.
It would be nice if we could make C++ the default configuration and then only ObjC projects have to override it.