I use a header only library in my C++ project.
When I make a change in my code, Visual Studio starts parsing files in my solution, including the included library.
Since the library is big, parsing it is slow and I have to wait for a long time until IntelliSense becomes relevant again.
Is there a way to speed up this parsing, perhaps, by excluding the library from IntelliSense?
This question is NOT a duplicate of Visual Studio 2017 is too slow during building and debugging because it deals specifically with speeding up IntelliSense, which is not touched by the other question, nor it's answers.