In the CMakeLists.txt we have:
cmake_minimum_required(VERSION 3.8)
But we've never verified that 3.8 is actually needed for the features used in the CMakeLists.txt. Ideally if we don't use features requiring 3.8 we could drop this version down to make it less likely a developer would need to upgrade cmake on their system.
In the
CMakeLists.txtwe have:But we've never verified that 3.8 is actually needed for the features used in the
CMakeLists.txt. Ideally if we don't use features requiring 3.8 we could drop this version down to make it less likely a developer would need to upgradecmakeon their system.