How do you integrate C or C++ open-source third party libraries in your projects? Do you copy all the files it comes with (i.e. README, makefiles etc) to a separate directory somewhere inside the project and build it using its configs? Or do you only get needed source files and headers from a source package? Or do you just install pre-build binaries?
What's better if I'm making a very little non-GUI project for both Windows and Linux?