From 684f502b2e0721d5c3df91c0155d0a8a222b9e42 Mon Sep 17 00:00:00 2001 From: pixl <8843371+PixlOne@users.noreply.github.com> Date: Tue, 23 Jul 2019 16:27:48 -0400 Subject: [PATCH] Support cmake versions supplied by Ubuntu repos. Mirroring @rockerbacon's commit: 431c7c038c86574f8ba19f43ecaa52b443c9d135 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c44ba31..c77cbac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.14) +cmake_minimum_required(VERSION 3.10) project(logiops) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall") @@ -11,4 +11,4 @@ add_subdirectory(src/logid) if(NOT EXISTS "${PROJECT_BINARY_DIR}/logid.cfg") configure_file("logid.example.cfg" "logid.cfg" COPYONLY) -endif() \ No newline at end of file +endif()