commit b785ee294ed321fef4bee98736a0ddebcb91cf8a
parent 395d673a8113ef0e5d8bb4b296c7f89697cf3fc2
Author: Jatin Chowdhury <jatinchowdhury18@gmail.com>
Date: Wed, 17 Mar 2021 17:49:18 -0700
Fix OS X deploymnet target
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -3,6 +3,7 @@ All notable changes to this project will be documented in
this file.
## [Unreleased]
+- Added support for Apple Silicon.
- Added Azimuth parameter for playhead loss controls.
- Added Variance and Drift parameters for Wow control.
- Fixed stability issue in tone filters.
@@ -10,6 +11,7 @@ this file.
- Added Envelope parameter for Degrade section.
- Improved parameter names for automation menus.
- Added arrows for preset menu.
+- Added support for OSX versions 10.9 and up.
- Fixed GUI freezing bug in Cakewalk.
- Fixed gain staging bug in Renoise.
- Migrated build pipeline to CMake.
diff --git a/Plugin/CMakeLists.txt b/Plugin/CMakeLists.txt
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.15)
-set(CMAKE_OSX_DEPLOYMENT_TARGET "10.8" CACHE STRING "Minimum OS X deployment target")
+set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment target")
set(CMAKE_CXX_STANDARD 17)
project(CHOWTapeModel VERSION 2.7.4)