From 20d89ceb79fc4c18af197aaf6a8223a06160bf17 Mon Sep 17 00:00:00 2001 From: Eric Conlon <37287+ejconlon@users.noreply.github.com> Date: Wed, 20 Aug 2025 16:47:22 -0700 Subject: [PATCH] Fix framework casing in apple meson build --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 89a7794..f1efb3c 100644 --- a/meson.build +++ b/meson.build @@ -55,7 +55,7 @@ elif host_machine.system().to_lower() == 'darwin' # API coremidi_dep = dependency( 'appleframeworks', - modules: ['coreaudio', 'coremidi', 'foundation'], + modules: ['CoreAudio', 'CoreMIDI', 'Foundation'], required: jack_not_found ) alsa_dep = disabler()