From 2fa6bd421207f6e3dbf1151e5f733dafcc8c324a Mon Sep 17 00:00:00 2001 From: faraphel Date: Sun, 22 Dec 2024 23:28:47 +0100 Subject: [PATCH] use an earlier version of C++ for a better compatibility --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e0b73e1..c613f69 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ -cmake_minimum_required(VERSION 3.29) +cmake_minimum_required(VERSION 3.16) project(gns3_wol_emulator) -set(CMAKE_CXX_STANDARD 23) +set(CMAKE_CXX_STANDARD 20) # Dependencies add_subdirectory(external/json)