meson.build 542 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
storage_api = static_library(
  'storage_api',
  'StorageInterface.cxx',
  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',
  'StorageState.cxx',
  include_directories: inc,
21 22 23
  dependencies: [
    boost_dep,
  ],
24 25 26 27 28 29 30 31 32
)

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