From 50c95a01436e6206a0bad3a22ac30161e7c4ced6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Tue, 31 Jan 2017 20:21:03 +0100 Subject: [PATCH] Bumped min cmake version to 3.0 Now we can use target_compile_option to privately add warnings to our build, without polluting outside CXX_FLAGS. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f4ca23c0..4f99aa1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.0) project(CatchSelfTest)