1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-12 23:55:50 +01:00

Fix missing AU, VST, and Ladspa effects

This also prevents a link error if you specifically link against the
10.9 SDK or older.
This commit is contained in:
Leland Lucius
2020-02-21 10:16:17 -06:00
parent 3332c9451e
commit 26827bc5e5
2 changed files with 29 additions and 16 deletions

View File

@@ -45,6 +45,9 @@ elseif( APPLE )
set( CMAKE_OSX_SYSROOT macosx CACHE INTERNAL "" )
set( CMAKE_XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "" CACHE INTERNAL "" )
# This prevents a link error when building with the 10.9 or older SDKs
set( CMAKE_XCODE_ATTRIBUTE_CLANG_LINK_OBJC_RUNTIME OFF )
# Shouldn't cmake do this???
string( APPEND CMAKE_CXX_FLAGS " -stdlib=libc++" )
endif()