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()