From 36add4da7a75c5b336b64eb8fe822e8ba833e3a8 Mon Sep 17 00:00:00 2001 From: Luke Gallagher Date: Sat, 1 Jun 2024 09:19:06 +1000 Subject: [PATCH] Update CMakeLists.txt (#583) Update the `cmake_minimum_required` version to 3.16.9. The submodule `external/benchmark` requires 3.16.3, so we bump the main repo to require the last patch version from 3.16.x. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 53ad3338..57c25974 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.16.9) cmake_policy(SET CMP0074 NEW) project(PISA CXX C)