From 8b7761e6151dd90f2c9a7047880759c13fe40dbb Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Thu, 8 Apr 2021 20:32:29 +0200 Subject: [PATCH] Link common plugin sources with Foundation --- plugins/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index 7a2f6fda..1bdc27e4 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -35,6 +35,8 @@ add_library(sfizz::plugins-common ALIAS plugins-common) # Link system dependencies if(WIN32) elseif(APPLE) + target_link_libraries(plugins-common PRIVATE + "${APPLE_FOUNDATION_LIBRARY}") else() find_package(PkgConfig REQUIRED) pkg_check_modules(GLIB REQUIRED glib-2.0)