From 86d9f6e6c8cd7d90bb53e8b4e02af2a5e5108482 Mon Sep 17 00:00:00 2001 From: JF Date: Sat, 18 Jan 2020 20:52:33 +0100 Subject: [PATCH] Set minimum version of cmake to 3.10 --- CMakeLists.txt | 2 +- src/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a9cf07c3..063decbe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.15) +cmake_minimum_required(VERSION 3.10) project(pinetime VERSION 0.2.0 LANGUAGES C CXX ASM) set(NRF_TARGET "nrf52") diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index eb755019..9d35a5b2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.12) +cmake_minimum_required(VERSION 3.10) project(pinetime-app C CXX ASM)