From 0fa0d723008f13721854bbbff024c52f5b55a586 Mon Sep 17 00:00:00 2001 From: "vladimir.kuznetsov" Date: Tue, 7 Feb 2023 19:45:42 +0300 Subject: [PATCH] increased required version of cmake for LINUX variable to work properly --- CMakeLists.txt | 2 +- client/CMakeLists.txt | 2 +- service/CMakeLists.txt | 4 ++-- service/server/CMakeLists.txt | 2 +- service/wireguard-service/CMakeLists.txt | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fa8418198..e8dbd7c7f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.23.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.25.0 FATAL_ERROR) set(PROJECT AmneziaVPN) project(${PROJECT}) diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 004385b72..0b97443f9 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.23.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.25.0 FATAL_ERROR) set(PROJECT AmneziaVPN) project(${PROJECT} VERSION 2.1.2) diff --git a/service/CMakeLists.txt b/service/CMakeLists.txt index abde0c702..567e9d496 100644 --- a/service/CMakeLists.txt +++ b/service/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.23.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.25.0 FATAL_ERROR) set(PROJECT service) project(${PROJECT}) @@ -16,4 +16,4 @@ endif() if(WIN32) add_subdirectory(wireguard-service) -endif() \ No newline at end of file +endif() diff --git a/service/server/CMakeLists.txt b/service/server/CMakeLists.txt index 23df64242..16fe77eca 100644 --- a/service/server/CMakeLists.txt +++ b/service/server/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.23.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.25.0 FATAL_ERROR) set(PROJECT AmneziaVPN-service) project(${PROJECT}) diff --git a/service/wireguard-service/CMakeLists.txt b/service/wireguard-service/CMakeLists.txt index 6e064f714..33a3d5843 100644 --- a/service/wireguard-service/CMakeLists.txt +++ b/service/wireguard-service/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.23.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.25.0 FATAL_ERROR) set(PROJECT wireguard-service) project(${PROJECT} LANGUAGES CXX)