From f382e5e36f6e8c1c55bed9f3d6957141250a7ee0 Mon Sep 17 00:00:00 2001 From: Tres Finocchiaro Date: Thu, 10 Jan 2019 23:43:00 -0500 Subject: [PATCH] Fix builds on macOS Mojave 10.14 (#4767) --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e42c48456..a563d05a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,6 +71,8 @@ OPTION(WANT_QT5 "Build with Qt5" OFF) IF(LMMS_BUILD_APPLE) + # Fix linking on 10.14+. See issue #4762 on github + LINK_DIRECTORIES(/usr/local/lib) SET(WANT_ALSA OFF) SET(WANT_PULSEAUDIO OFF) SET(WANT_VST OFF)