Skip to content

Commit

Permalink
Newer VST3 SDKs need timer.cpp on linux. (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtytel authored Jul 5, 2024
1 parent 497f40a commit beea2e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/base_sdks.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ function(guarantee_vst3sdk)
${VST3_SDK_ROOT}/public.sdk/source/common/*.cpp
${VST3_SDK_ROOT}/pluginterfaces/base/*.cpp
)
if( UNIX AND NOT APPLE )
# Sigh - ${VST3_SDK_ROOT} ships with non-working code if you has it
if (UNIX AND NOT APPLE AND ${SDKVERSION} VERSION_LESS 3.7.9)
# Sigh - VST3 SDK before 3.7.9 ships with non-working timer code
get_filename_component(full_path_test_cpp ${VST3_SDK_ROOT}/base/source/timer.cpp ABSOLUTE)
list(REMOVE_ITEM VST3_GLOB "${full_path_test_cpp}")
endif()
Expand Down

0 comments on commit beea2e6

Please sign in to comment.