meson.build 520 Bytes
Newer Older
1 2 3
song = static_library(
  'song',
  'DetachedSong.cxx',
4
  'Escape.cxx',
5 6 7 8 9 10 11 12 13 14 15
  'StringFilter.cxx',
  'UriSongFilter.cxx',
  'BaseSongFilter.cxx',
  'TagSongFilter.cxx',
  'ModifiedSinceSongFilter.cxx',
  'AudioFormatSongFilter.cxx',
  'AndSongFilter.cxx',
  'OptimizeFilter.cxx',
  'Filter.cxx',
  'LightSong.cxx',
  include_directories: inc,
16 17 18
  dependencies: [
    pcre_dep,
  ],
19 20 21 22 23 24
)

song_dep = declare_dependency(
  link_with: song,
  dependencies: [
    icu_dep,
25
    pcre_dep,
26
    tag_dep,
27
    time_dep,
28 29 30
    util_dep,
  ],
)