From f952966967b2800f7a79d30fa413e8b81b07d788 Mon Sep 17 00:00:00 2001 From: Sahnvour Date: Fri, 1 Apr 2022 15:05:59 +0200 Subject: [PATCH] Require C++17 in CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 42cc0945..5f19bffe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project(Tracy LANGUAGES CXX) find_package(Threads REQUIRED) add_library(TracyClient TracyClient.cpp) -target_compile_features(TracyClient PUBLIC cxx_std_11) +target_compile_features(TracyClient PUBLIC cxx_std_17) target_include_directories(TracyClient SYSTEM PUBLIC $ $)