c++ – How to make VS2022 prompt to include files from external library with quotation marks (“) and not angle brackets ()?


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:

enter image description 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)

Leave a Reply

Your email address will not be published. Required fields are marked *