summaryrefslogtreecommitdiff
path: root/src/decoder/meson.build
blob: 072240cd08395a3420f02de0180523558a8e9e37 (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
decoder_api = static_library(
  'decoder_api',
  'DecoderAPI.cxx',
  'Reader.cxx',
  'DecoderBuffer.cxx',
  'DecoderPlugin.cxx',
  include_directories: inc,
  dependencies: [
    log_dep,
  ],
)

decoder_api_dep = declare_dependency(
  link_with: decoder_api,
  dependencies: [
    tag_dep,
    config_dep,
    input_api_dep,
  ],
)

subdir('plugins')

decoder_glue = static_library(
  'decoder_glue',
  'DecoderList.cxx',
  include_directories: inc,
)

decoder_glue_dep = declare_dependency(
  link_with: decoder_glue,
  dependencies: [
    decoder_plugins_dep,
  ],
)