Would it be OK to start requiring C++11 compiler support? Especially range-based for loops and the auto keyword are nice features, and it's frustrating not being able to use them in new code while the compiler support is widely available.
To do this properly in CMake, we should use the target_compile_features option, which is available since CMake 3.1, so the minimal required version would be bumped up because of this.
Would it be OK to start requiring C++11 compiler support? Especially range-based for loops and the auto keyword are nice features, and it's frustrating not being able to use them in new code while the compiler support is widely available.
To do this properly in CMake, we should use the target_compile_features option, which is available since CMake 3.1, so the minimal required version would be bumped up because of this.