summaryrefslogtreecommitdiff
path: root/src/db/meson.build
blob: d5ad321c00c92e574136ac1dfeb2720d93ef7435 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
db_api = static_library(
  'db_api',
  'DatabaseLock.cxx',
  'Selection.cxx',
  include_directories: inc,
)

db_api_dep = declare_dependency(
  link_with: db_api,
)

subdir('plugins')

db_glue_sources = [
  'Count.cxx',
  'update/UpdateDomain.cxx',
  'update/Config.cxx',
  'update/Service.cxx',
  'update/Queue.cxx',
  'update/UpdateIO.cxx',
  'update/Editor.cxx',
  'update/Walk.cxx',
  'update/UpdateSong.cxx',
  'update/Container.cxx',
  'update/Remove.cxx',
  'update/ExcludeList.cxx',
  'DatabaseGlue.cxx',
  'Configured.cxx',
  'DatabaseSong.cxx',
  'DatabasePrint.cxx',
  'DatabaseQueue.cxx',
  'DatabasePlaylist.cxx',
]

if enable_inotify
  db_glue_sources += [
    'update/InotifyDomain.cxx',
    'update/InotifySource.cxx',
    'update/InotifyQueue.cxx',
    'update/InotifyUpdate.cxx',
  ]
endif

db_glue = static_library(
  'db_glue',
  db_glue_sources,
  include_directories: inc,
)

db_glue_dep = declare_dependency(
  link_with: db_glue,
  dependencies: [
    db_plugins_dep,
  ],
)