Hello all,
I have a situation where I include the header file of the library which I want to use in my main program. The main program is warning free and it has a feature of treating warnings as errors.
Now, when I try to include the external library's header file, the build is failing as that header file is containing the warnings.
The issue here is, the external library is dynamic and we can not modify it.
So, is there any way by which I can avoid the external warnings popping up in my build and being treated as errors?
I tried "isystem" and "--features=external_include_paths" by referring to below link:
But it is not helping me, it is still giving me errors.
Can anyone help me out through this?
Thanks,
Ali