From 596937a04ac90d79182c0d4a4f8e8b3ac24b5611 Mon Sep 17 00:00:00 2001 From: Peter Kragh Date: Mon, 5 Aug 2024 16:18:55 +0200 Subject: [PATCH] Support older cmake --- helloworld-cpp-cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloworld-cpp-cmake/CMakeLists.txt b/helloworld-cpp-cmake/CMakeLists.txt index 9f13196..9842310 100644 --- a/helloworld-cpp-cmake/CMakeLists.txt +++ b/helloworld-cpp-cmake/CMakeLists.txt @@ -1,5 +1,5 @@ -cmake_minimum_required(VERSION 3.29) +cmake_minimum_required(VERSION 3.25) project(MyProject VERSION 1.0.0 LANGUAGES C CXX) set(CMAKE_EXPORT_COMPILE_COMMANDS true)