94592c1406
So long, autotools! This is my last MPD related project to migrate away from it. It has its strengths, but also very obvious weaknesses and weirdnesses. Today, many of its quirks are not needed anymore, and are cumbersome and slow. Now welcome our new Meson overlords!
29 lines
462 B
Meson
29 lines
462 B
Meson
filter_api = static_library(
|
|
'filter_api',
|
|
'Observer.cxx',
|
|
'Filter.cxx',
|
|
include_directories: inc,
|
|
)
|
|
|
|
filter_api_dep = declare_dependency(
|
|
link_with: filter_api,
|
|
)
|
|
|
|
subdir('plugins')
|
|
|
|
filter_glue = static_library(
|
|
'filter_glue',
|
|
'FilterRegistry.cxx',
|
|
'Factory.cxx',
|
|
'LoadOne.cxx',
|
|
'LoadChain.cxx',
|
|
include_directories: inc,
|
|
)
|
|
|
|
filter_glue_dep = declare_dependency(
|
|
link_with: filter_glue,
|
|
dependencies: [
|
|
filter_plugins_dep,
|
|
],
|
|
)
|