Hello guys, I was just wondering how I should link external libraries, mainly for graphics programming with OpenGL (GLFW and GLAD).
My first thought was to use CMake and put in the source code of the external libraries into my project, and use them like that. Another idea was to use a package manager like Conan to download the libraries and use CMake to set them up. Thirdly, I believe I could use FetchContent and CMake to set them up for me without me having to download source manually.
If anyone could recommend me a way from these or any other and why, that would be awesome!