From c827b5a1b6dad762faf0d2cd70a99ec224619562 Mon Sep 17 00:00:00 2001 From: Raymonf Date: Thu, 20 Aug 2020 17:21:43 -0400 Subject: [PATCH] Lower CMake version requirement to 3.13 Technically we could probably move this all the way down to 3.6, but 3.13 should be a good version to target. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd30f33..e02ae6e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.16) +cmake_minimum_required(VERSION 3.13) project(OpenFusion) set(CMAKE_CXX_STANDARD 17)