summaryrefslogtreecommitdiff
path: root/src/song/meson.build
blob: 71eda8d6555a347cfcb23de4e57ba3aa8c946be0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
song = static_library(
  'song',
  'DetachedSong.cxx',
  'Escape.cxx',
  'StringFilter.cxx',
  'UriSongFilter.cxx',
  'BaseSongFilter.cxx',
  'TagSongFilter.cxx',
  'ModifiedSinceSongFilter.cxx',
  'AudioFormatSongFilter.cxx',
  'AndSongFilter.cxx',
  'OptimizeFilter.cxx',
  'Filter.cxx',
  'LightSong.cxx',
  include_directories: inc,
)

song_dep = declare_dependency(
  link_with: song,
  dependencies: [
    icu_dep,
    tag_dep,
    util_dep,
  ],
)