From 62dd5c8d4ec41942b957d3b487ace51d30d1ad47 Mon Sep 17 00:00:00 2001 From: vhinger Date: Thu, 13 Mar 2025 11:01:20 +0100 Subject: [PATCH] Enforce compiler support for c++17 standard --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5676ec92d..210664fa1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -191,7 +191,7 @@ endif() # to control options for the libraries if(NOT TARGET slsProjectOptions) add_library(slsProjectOptions INTERFACE) - target_compile_features(slsProjectOptions INTERFACE cxx_std_11) + target_compile_features(slsProjectOptions INTERFACE cxx_std_17) endif() if (NOT TARGET slsProjectWarnings)