You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
404 B
Meson
29 lines
404 B
Meson
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,
|
|
dependencies: [
|
|
log_dep,
|
|
fmt_dep,
|
|
fs_dep,
|
|
fs_glue_dep,
|
|
io_fs_dep,
|
|
],
|
|
)
|
|
|
|
config_dep = declare_dependency(
|
|
link_with: config,
|
|
dependencies: [
|
|
],
|
|
)
|