From 725d29c4665096426ac48b2ed1cc4f264e4fbb6f Mon Sep 17 00:00:00 2001 From: Valentin Ackva Date: Thu, 11 Apr 2024 14:56:49 +0200 Subject: [PATCH] temporary disable arm64 macOS ci build --- .github/workflows/build.yml | 4 ++-- CMakeLists.txt | 6 +----- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dc579cd..4ccc80b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,8 +40,8 @@ jobs: os: ubuntu-latest - name: macOS-x86_64 os: macOS-latest - - name: macOS-arm64 - os: macOS-latest +# - name: macOS-arm64 +# os: macOS-latest - name: Windows-x86_64 os: windows-latest diff --git a/CMakeLists.txt b/CMakeLists.txt index 002db09..b9a2338 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,11 +4,7 @@ project(BinauralPanner VERSION 0.0.1) set (TARGET_NAME ${PROJECT_NAME}) if(APPLE) - if(CMAKE_OSX_ARCHITECTURES STREQUAL "arm64") - set(FORMATS_TO_BUILD AU VST3 Standalone) - else() - set(FORMATS_TO_BUILD AU Standalone) - endif() + set(FORMATS_TO_BUILD AU VST3 Standalone) else() # Maybe add LV2 here for Linux set(FORMATS_TO_BUILD VST3 Standalone) endif()