2017-12-29 17:12:55 +01:00
|
|
|
song = static_library(
|
|
|
|
'song',
|
|
|
|
'DetachedSong.cxx',
|
2018-11-02 19:15:08 +01:00
|
|
|
'Escape.cxx',
|
2017-12-29 17:12:55 +01:00
|
|
|
'StringFilter.cxx',
|
|
|
|
'UriSongFilter.cxx',
|
|
|
|
'BaseSongFilter.cxx',
|
|
|
|
'TagSongFilter.cxx',
|
|
|
|
'ModifiedSinceSongFilter.cxx',
|
2023-11-04 17:25:24 +01:00
|
|
|
'AddedSinceSongFilter.cxx',
|
2022-02-14 13:35:08 +01:00
|
|
|
'PrioritySongFilter.cxx',
|
2017-12-29 17:12:55 +01:00
|
|
|
'AudioFormatSongFilter.cxx',
|
|
|
|
'AndSongFilter.cxx',
|
|
|
|
'OptimizeFilter.cxx',
|
|
|
|
'Filter.cxx',
|
|
|
|
'LightSong.cxx',
|
|
|
|
include_directories: inc,
|
2018-12-09 17:21:38 +01:00
|
|
|
dependencies: [
|
|
|
|
pcre_dep,
|
2022-02-14 13:35:08 +01:00
|
|
|
fmt_dep,
|
2018-12-09 17:21:38 +01:00
|
|
|
],
|
2017-12-29 17:12:55 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
song_dep = declare_dependency(
|
|
|
|
link_with: song,
|
|
|
|
dependencies: [
|
|
|
|
icu_dep,
|
2018-11-07 00:28:15 +01:00
|
|
|
pcre_dep,
|
2017-12-29 17:12:55 +01:00
|
|
|
tag_dep,
|
2019-05-08 15:47:58 +02:00
|
|
|
time_dep,
|
2017-12-29 17:12:55 +01:00
|
|
|
util_dep,
|
|
|
|
],
|
|
|
|
)
|