Both the math CMakeLists.txt and mp11 CMakeLists.txt contain the super project version as a literal like:
project(boost_mp11 VERSION 1.92.0 LANGUAGES CXX)
while all other libs do it like:
project(boost_accumulators VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
Any particular reason why those 2 libs deviate from the general pattern ?
Otherwise there is a small improvement in the consistency of the CMakeLists.txt files to make.
Both the math CMakeLists.txt and mp11 CMakeLists.txt contain the super project version as a literal like:
project(boost_mp11 VERSION 1.92.0 LANGUAGES CXX)while all other libs do it like:
project(boost_accumulators VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)Any particular reason why those 2 libs deviate from the general pattern ?
Otherwise there is a small improvement in the consistency of the CMakeLists.txt files to make.