From d263ce64ed58eb0a42a40410883ce5cb048f0c19 Mon Sep 17 00:00:00 2001
From: Stephan Hilb <stephan.hilb@mathematik.uni-stuttgart.de>
Date: Fri, 5 Apr 2019 09:03:57 +0200
Subject: [PATCH] make: relax cmake version for CI

---
 CMakeLists.txt | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 04ca9e4..77764bb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,10 +1,9 @@
-cmake_minimum_required(VERSION 3.13)
+cmake_minimum_required(VERSION 3.10)
 
 project(flow-code LANGUAGES CXX)
 
 add_subdirectory(imageLib)
 
-
 add_executable(color_flow color_flow.cpp flowIO.cpp colorcode.cpp)
 target_include_directories(color_flow PRIVATE imageLib)
 target_link_libraries(color_flow PRIVATE imageLib PUBLIC png z)
-- 
GitLab