From 67450e1f973b1486bfe2188df80f078d18c60df1 Mon Sep 17 00:00:00 2001 From: Dalton Messmer Date: Mon, 28 Oct 2024 16:47:22 -0400 Subject: [PATCH] Use C++20 in RemoteVstPlugin --- plugins/VstBase/RemoteVstPlugin/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/VstBase/RemoteVstPlugin/CMakeLists.txt b/plugins/VstBase/RemoteVstPlugin/CMakeLists.txt index 445d4f911..8281d2a30 100644 --- a/plugins/VstBase/RemoteVstPlugin/CMakeLists.txt +++ b/plugins/VstBase/RemoteVstPlugin/CMakeLists.txt @@ -73,7 +73,7 @@ if(MSVC) endif() if(IS_MINGW) - SET(CMAKE_REQUIRED_FLAGS "-std=c++17") + SET(CMAKE_REQUIRED_FLAGS "-std=c++20") endif() if(LMMS_BUILD_WIN32)