From fe408689b0653108a6ebb1425e08215d3060f339 Mon Sep 17 00:00:00 2001 From: Oleksandr Nemesh Date: Mon, 29 Jul 2024 01:42:18 +0300 Subject: [PATCH] change min cmake version --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7bc2823..9d1ee62 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.28) +cmake_minimum_required(VERSION 3.21) project(rift) set(CMAKE_CXX_STANDARD 20) @@ -14,4 +14,4 @@ if (NOT RIFT_BUILD_TESTS) endif() add_executable(rift_test test/main.cpp) -target_link_libraries(rift_test rift) \ No newline at end of file +target_link_libraries(rift_test rift)