It seems that most users will just use a pre build version of boost in combination with find_package
.
I always download my 3rd party dependencies via git and integrate them in cmake. This was usually not a problem because all my libraries were either using cmake or were just header only libraries.
How would I integrate boost log into my cmake build system? Do I need to treat it as if I had written it myself and compile it manually by including every .h and .cpp files and build it as a shared library?
Or is there a more simple way, for example reusing the .jam
file in cmake?