meson.build 534 Bytes
Newer Older
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
decoder_api = static_library(
  'decoder_api',
  'DecoderAPI.cxx',
  'Reader.cxx',
  'DecoderBuffer.cxx',
  'DecoderPlugin.cxx',
  include_directories: inc,
)

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,
  ],
)