From c99968017d98b5cc9dc7b4626882ad23e35d17fd Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Wed, 14 Aug 2024 18:31:59 -0600 Subject: [PATCH] enable C++17 --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f8448af48..e26cc2686 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,6 +68,7 @@ include(cmake/Format.cmake) # Add a library add_library(spiner INTERFACE) add_library(spiner::spiner ALIAS spiner) +target_compile_features(spiner INTERFACE cxx_std_17) # ############################################################################## # Dependencies #