meson.build 555 Bytes
Newer Older
1 2 3
storage_api = static_library(
  'storage_api',
  'StorageInterface.cxx',
4
  'StoragePlugin.cxx',
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
  include_directories: inc,
)

storage_api_dep = declare_dependency(
  link_with: storage_api,
)

subdir('plugins')

storage_glue = static_library(
  'storage_glue',
  'Registry.cxx',
  'CompositeStorage.cxx',
  'MemoryDirectoryReader.cxx',
  'Configured.cxx',
  include_directories: inc,
21 22
  dependencies: [
    boost_dep,
23
    log_dep,
24
  ],
25 26 27 28 29 30 31 32
)

storage_glue_dep = declare_dependency(
  link_with: storage_glue,
  dependencies: [
    storage_plugins_dep,
  ],
)