From 8ea6d8f18a3fe6b79b27e5185963f126efdd71fa Mon Sep 17 00:00:00 2001 From: Stella Stamenova Date: Mon, 18 Sep 2023 15:05:31 -0700 Subject: [PATCH] Bump cmake minimum required version to 3.20.0 (#2064) This matches the current minimum required version in llvm (see https://reviews.llvm.org/D144509) Signed-off-by: Stella Stamenova Co-authored-by: Alexandre Eichenberger Co-authored-by: Nathaniel McVicar <61472752+NathanielMcVicar@users.noreply.github.com> --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c8cb5f2f04..0bf9b7e3c6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 # Match the minimum required version of LLVM and MLIR -cmake_minimum_required(VERSION 3.13.4) +cmake_minimum_required(VERSION 3.20.0) project(onnx-mlir)