I've ran into a confusion about how to properly use header-only library. Googling didn't help as I didn't find anything about using header-only libraries.
So my question is: Should I just copy the header files and paste them into my project folder and use them that way or should I link them to the project using C\C++ >> General >> Additional Include Directories?
/ThirdParty/SomeLibrary/
then in the files that need those headers you just say#include "ThirdParty/SomeLibrary/SomeHeader.h"
– Ferrari