Skip to content

Commit

Permalink
Downgrade RemoteVstPlugin build back to C++17 (#7624)
Browse files Browse the repository at this point in the history
  • Loading branch information
sakertooth authored Dec 18, 2024
1 parent 7590bc0 commit 248b6b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/VstBase/RemoteVstPlugin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ endif()

project(RemoteVstPlugin
LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD 17)

include(CheckCXXPreprocessor)
include(CheckCXXSourceCompiles)
Expand Down Expand Up @@ -73,7 +73,7 @@ if(MSVC)
endif()

if(IS_MINGW)
SET(CMAKE_REQUIRED_FLAGS "-std=c++20")
SET(CMAKE_REQUIRED_FLAGS "-std=c++17")
endif()

if(LMMS_BUILD_WIN32)
Expand Down

0 comments on commit 248b6b9

Please sign in to comment.