Make boost optional for all user. When BUILD_USE_BOOST is enabled cmake will...
Make boost optional for all user. When BUILD_USE_BOOST is enabled cmake will look for the boost header only libraries. Afterwards boost needs to be linked to the required library. e.g: if(BUILD_USE_BOOST) target_link_libraries(${library_name} PRIVATE Boost::boost) endif()