Skip to content

Commit

Permalink
playlist/plugins/meson.build: add missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKellermann committed Mar 10, 2025
1 parent 55c1144 commit 800a03f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/playlist/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ playlist_glue = static_library(
'playlist_glue',
'PlaylistRegistry.cxx',
include_directories: inc,
dependencies: [
input_api_dep,
],
)

playlist_glue_dep = declare_dependency(
Expand Down
4 changes: 3 additions & 1 deletion src/playlist/plugins/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ playlist_plugins_deps = [
log_dep,
expat_dep,
flac_dep,
input_api_dep,
config_dep,
]

playlist_features.set('ENABLE_CUE', get_option('cue'))
Expand Down Expand Up @@ -43,7 +45,7 @@ endif
playlist_features.set('ENABLE_SOUNDCLOUD', enable_soundcloud)
if enable_soundcloud
playlist_plugins_sources += 'SoundCloudPlaylistPlugin.cxx'
playlist_plugins_deps += yajl_dep
playlist_plugins_deps += [yajl_dep, input_glue_dep]
endif

playlist_plugins = static_library(
Expand Down

0 comments on commit 800a03f

Please sign in to comment.