From 3ee23ee6aa5d05a190d64c5d06de69133e550cd3 Mon Sep 17 00:00:00 2001 From: Kacper Sagnowski Date: Fri, 28 Mar 2025 13:25:37 +0100 Subject: [PATCH 1/2] Increase minimum required CMake version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c2143c9090..d5c688e16a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,7 +29,7 @@ # cmake --build . --config Release -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.10) set(CMAKE_C_STANDARD 99) -- GitLab From bdf81dbfaf5b3624c6fd4c6e6fa3bd4babd50a3b Mon Sep 17 00:00:00 2001 From: Tapani Pihlajakuja Date: Fri, 28 Mar 2025 14:05:33 +0000 Subject: [PATCH 2/2] Change project to be only C --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d5c688e16a..de4727bec8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -121,7 +121,7 @@ if(WMOPS) add_definitions("-DWMOPS=1") endif() -project(stereo-evs) +project(stereo-evs LANGUAGES C) set_property(GLOBAL PROPERTY USE_FOLDERS ON) # make Visual Studio projects look nicer include(CTest) -- GitLab