From: Gichan Jang Date: Thu, 3 Apr 2025 05:32:59 +0000 (+0900) Subject: [CMake] Change minimum version X-Git-Tag: accepted/tizen/unified/20250613.040650~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2ddcca35ba37a848665f73b8d038c3f4c5bbc2f4;p=platform%2Fupstream%2Fnnstreamer-edge.git [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 --- 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)