From d82861ebe46409efcc2f84a6ecce970b8e459843 Mon Sep 17 00:00:00 2001 From: Rory Fitzgerald <rory.fitzg@hotmail.com> Date: Wed, 9 Apr 2025 12:41:44 -0500 Subject: [PATCH] propogating sdl2mixer_dep --- dependencies/subprojects/animationwindow/meson.build | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dependencies/subprojects/animationwindow/meson.build b/dependencies/subprojects/animationwindow/meson.build index 16da4b1..ddc7f40 100644 --- a/dependencies/subprojects/animationwindow/meson.build +++ b/dependencies/subprojects/animationwindow/meson.build @@ -32,7 +32,11 @@ animationwindow = static_library('animationwindow', build_files, include_directo install_subdir('include', install_dir: '.') install_subdir('src', install_dir: '.') -animationwindow_dep = declare_dependency(link_with: animationwindow, include_directories: incdir) +animationwindow_dep = declare_dependency( + link_with: animationwindow, + include_directories: incdir, + dependencies: [sdl2_dep, sdl2image_dep, sdl2mixer_dep] +) import('pkgconfig').generate(animationwindow) -- GitLab