How do I include a library that is not in my library folder in C ++?
I know that the directive of #include
with <>
can make the include of the file that is not in the same folder, but if I have several folders with a library with the same name, I wonder if it would not confuse the library which I created, with other libraries of other C ++ projects that I also created on my PC.
I would like to know if it does not have an option for it to look in an out-of-root folder without having to put it all the way from where it is, using ""
, or it will be able to find my library with <>
same as I have other libraries in other folders with the same name?
Thank you for helping me.