From d2584ecb019a865503100d66e1e198c9ef255a3b Mon Sep 17 00:00:00 2001 From: apathy Date: Thu, 5 Jan 2017 07:34:14 -0600 Subject: [PATCH] Require cmake 3.2 min version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d4241cf..560e0c6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ if (${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) message(FATAL_ERROR "CMake should have crashed - this is a failsafe in case the call used to trigger the crash gets fixed.") endif() -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.2 FATAL_ERROR) project(stationapi CXX)