From 2ddcca35ba37a848665f73b8d038c3f4c5bbc2f4 Mon Sep 17 00:00:00 2001 From: Gichan Jang Date: Thu, 3 Apr 2025 14:32:59 +0900 Subject: [PATCH] [CMake] Change minimum version Change minimum required version of CMAKE. Error: CMake Error at CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): Compatibility with CMake < 3.5 has been removed from CMake. Update the VERSION argument value. Or, use the ... syntax to tell CMake that the project requires at least but has been updated to work with policies introduced by or earlier. Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. -- Configuring incomplete, errors occurred! Signed-off-by: Gichan Jang --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5fa339f..09e0a65 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.6) +CMAKE_MINIMUM_REQUIRED(VERSION 3.5) PROJECT(nnstreamer-edge) INCLUDE(FindPkgConfig) -- 2.34.1