From 7b228688490a0911332d8476d5dcf76d0a9117e8 Mon Sep 17 00:00:00 2001 From: hmelder Date: Wed, 1 Nov 2023 14:16:02 +0100 Subject: [PATCH] Fix variable type issue: dependencies_to_link should remain an array --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 49c475c..fbe8b67 100644 --- a/meson.build +++ b/meson.build @@ -31,7 +31,7 @@ if host_machine.system() == 'linux' elif host_machine.system() == 'darwin' # Properly link against the Foundation framework foundation_dep = dependency('appleframeworks', modules: ['Foundation']) - dependencies_to_link = foundation_dep + dependencies_to_link += foundation_dep add_project_link_arguments('-lobjc', language: 'objc') else