From dffd94d7456a5d80e6dc076243b9bfdc645f915a Mon Sep 17 00:00:00 2001 From: Adam Wegrzynek Date: Thu, 30 Nov 2023 09:12:22 +0100 Subject: [PATCH] Do not require dependencies to use C++20 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3581a2bd..9a2f627c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ endif() # Define project project(Monitoring - VERSION 3.18.0 + VERSION 3.18.1 DESCRIPTION "O2 Monitoring library" LANGUAGES CXX ) @@ -217,7 +217,7 @@ target_compile_definitions(Monitoring ) # Use C++17 -target_compile_features(Monitoring PUBLIC cxx_std_20) +target_compile_features(Monitoring PUBLIC cxx_std_17) ####################################