From 195b477f85b31ca43727d9a1a32ce7ffb321e671 Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Wed, 28 Feb 2024 16:42:42 -0800 Subject: [PATCH] Bump required cmake to 3.14 (#373) This should have gone into PR #366, since `file(CREATE_LINK)` was introduced in cmake 3.14, not sure how it slipped through the CI. Signed-off-by: Cary Phillips --- CMakeLists.txt | 2 +- website/install.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 705d7357..282242dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright Contributors to the OpenEXR Project. -cmake_minimum_required(VERSION 3.12) +cmake_minimum_required(VERSION 3.14) if(POLICY CMP0074) cmake_policy(SET CMP0074 NEW) diff --git a/website/install.rst b/website/install.rst index 1c307cfc..aa7f3606 100644 --- a/website/install.rst +++ b/website/install.rst @@ -51,7 +51,7 @@ Prerequisites Make sure these are installed on your system before building Imath: -* Imath requires CMake version 3.12 or newer +* Imath requires CMake version 3.14 or newer * C++ compiler that supports C++11 The instructions that follow describe building Imath with CMake.