From 148fe445c4d8287c03d16596629a188224913c18 Mon Sep 17 00:00:00 2001 From: Paul Fd Date: Mon, 5 Jul 2021 23:57:09 +0200 Subject: [PATCH] Don't include the VST for PPC --- plugins/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index d88dcd71..d3f1070e 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -51,7 +51,7 @@ if(SFIZZ_LV2) add_subdirectory(lv2) endif() -if(SFIZZ_VST OR SFIZZ_AU OR SFIZZ_VST2) +if((SFIZZ_VST OR SFIZZ_AU OR SFIZZ_VST2) AND NOT (SFIZZ_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc).*")) add_subdirectory(vst) endif()