From c9005e957a4dc514cab13982fc87ecabb9f0ff26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Stolarczuk?= Date: Mon, 21 Oct 2024 11:10:13 +0200 Subject: [PATCH] Bump minimal required CMake version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently, it doesn't configure properly on cmake-3.5.0 with 2 errors: - CMake Error at CMakeLists.txt:51 (include) include could not find load file: FetchContent - CMake Error at source/layers/validation/CMakeLists.txt:39 (install): install TARGETS given unknown argument "NAMELINK_COMPONENT". Signed-off-by: Ɓukasz Stolarczuk --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 37e7720..e03d5a8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (C) 2020-2024 Intel Corporation # SPDX-License-Identifier: MIT -cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.12.0 FATAL_ERROR) set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF)