Skip to content

Commit

Permalink
Fix variable type issue: dependencies_to_link should remain an array
Browse files Browse the repository at this point in the history
  • Loading branch information
hmelder committed Nov 1, 2023
1 parent 2472c65 commit 7b22868
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7b22868

Please sign in to comment.