From ec6eb4c053afc9cc607205ddeb955c8212006794 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sat, 9 May 2020 16:40:13 +1000 Subject: [PATCH] cmake: bumped minimum version We use `target_link_libraries` now which is 3.13+ only. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d102e253..ee3cacf7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.13 FATAL_ERROR) project(olive-editor VERSION 0.2.0 LANGUAGES CXX)