gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit f8dc62c465a4acda54cb7fed11633e41b11afde5
parent 3f4601a773d4d816957b4248a6fa55c86fb1a5f3
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Tue, 10 Aug 2021 23:18:36 +0200

build universal binary on Mac

Diffstat:
MCMakeLists.txt | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -1,8 +1,9 @@ cmake_minimum_required(VERSION 3.15) # build a fat binary that runs on both intel and the new Apple M1 chip -#set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64") -set(CMAKE_OSX_ARCHITECTURES "x86_64") +set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64") +#set(CMAKE_OSX_ARCHITECTURES "x86_64") + set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version") project(gearmulator VERSION 1.1.8)