meson.build 323 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
config = static_library(
  'fs',
  'Path.cxx',
  'Check.cxx',
  'Data.cxx',
  'Block.cxx',
  'Param.cxx',
  'Parser.cxx',
  'File.cxx',
  'Migrate.cxx',
  'Templates.cxx',
  'Domain.cxx',
  'Net.cxx',
  include_directories: inc,
)

config_dep = declare_dependency(
  link_with: config,
  dependencies: [
    fs_dep,
  ],
)