Bump the required CMake version to 3.1.0 and enforce compiler C++14 support.

This commit is contained in:
binary1248 2017-03-18 13:18:59 +01:00
parent 756cb09bc3
commit 1a2ca9c809

View file

@ -1,4 +1,7 @@
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.1.0)
# set the minimum required C++ standard to C++14
set(CMAKE_CXX_STANDARD 14)
# define a macro that helps defining an option
macro(sfml_set_option var default type docstring)