summaryrefslogtreecommitdiff
path: root/src/song/meson.build
blob: 36abdc0732de875b246461c9f493b6936891465b (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
26
27
28
29
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,
  dependencies: [
    pcre_dep,
  ],
)

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