From c5e51a5ffcad8c55643b01b3ece7b4d927703174 Mon Sep 17 00:00:00 2001 From: James Benton Date: Mon, 18 Jun 2018 21:13:06 +0100 Subject: [PATCH] cmake: Remove -std=c++17 from wut_enable_stdcpp --- share/wut.cmake | 3 --- 1 file changed, 3 deletions(-) diff --git a/share/wut.cmake b/share/wut.cmake index 60c2ed3..cdcc0f8 100644 --- a/share/wut.cmake +++ b/share/wut.cmake @@ -21,9 +21,6 @@ macro(wut_enable_stdcpp target) stdc++ -Wl,--whole-archive wutstdc++ -Wl,--no-whole-archive) - set_property(TARGET ${target} APPEND_STRING PROPERTY - COMPILE_FLAGS "-std=c++17") - set_target_properties(${target} PROPERTIES WUT_ENABLE_STDCPP 1) endif() endmacro()