I am including files from external library (my sources) with:
Project Properties->C/C++ General->Additional Include Directories = ../../common/inc
When I use some class from the sources from this library, VS2022 prompts to add include file like here:
I accustomed to use angle brackets (<>) for system files, so I’d like to include my library files with quotation marks (“).
How to change the behavior of VS2022 so that it suggests quotation marks (“) like it did for cpp file here?
(BTW, I have no idea why it is on the list, the src folder is not listed in include directories)