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 fa841819..e8dbd7c7 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 004385b7..0b97443f 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 abde0c70..567e9d49 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 23df6424..16fe77ec 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 6e064f71..33a3d584 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)