2020-05-05 14:45:18 +02:00
|
|
|
input_features = configuration_data()
|
|
|
|
|
2017-12-29 17:12:55 +01:00
|
|
|
input_api = static_library(
|
|
|
|
'input_api',
|
|
|
|
'Error.cxx',
|
2018-10-24 20:25:32 +02:00
|
|
|
'InputPlugin.cxx',
|
2017-12-29 17:12:55 +01:00
|
|
|
'InputStream.cxx',
|
|
|
|
'ThreadInputStream.cxx',
|
|
|
|
'AsyncInputStream.cxx',
|
|
|
|
'ProxyInputStream.cxx',
|
2021-05-18 16:33:16 +02:00
|
|
|
'LastInputStream.cxx',
|
2017-12-29 17:12:55 +01:00
|
|
|
include_directories: inc,
|
|
|
|
)
|
|
|
|
|
|
|
|
input_api_dep = declare_dependency(
|
|
|
|
link_with: input_api,
|
|
|
|
dependencies: [
|
|
|
|
event_dep,
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
subdir('plugins')
|
|
|
|
|
|
|
|
input_glue = static_library(
|
|
|
|
'input_glue',
|
|
|
|
'Init.cxx',
|
|
|
|
'Registry.cxx',
|
|
|
|
'Open.cxx',
|
|
|
|
'LocalOpen.cxx',
|
|
|
|
'ScanTags.cxx',
|
|
|
|
'Reader.cxx',
|
|
|
|
'TextInputStream.cxx',
|
|
|
|
'ProxyInputStream.cxx',
|
|
|
|
'RewindInputStream.cxx',
|
2019-05-09 11:39:30 +02:00
|
|
|
'BufferingInputStream.cxx',
|
2017-12-29 17:12:55 +01:00
|
|
|
'BufferedInputStream.cxx',
|
|
|
|
'MaybeBufferedInputStream.cxx',
|
2019-05-08 18:39:00 +02:00
|
|
|
'cache/Config.cxx',
|
|
|
|
'cache/Manager.cxx',
|
|
|
|
'cache/Item.cxx',
|
|
|
|
'cache/Stream.cxx',
|
2017-12-29 17:12:55 +01:00
|
|
|
include_directories: inc,
|
2019-12-09 23:49:55 +01:00
|
|
|
dependencies: [
|
2021-06-23 21:55:08 +02:00
|
|
|
log_dep,
|
2019-12-09 23:49:55 +01:00
|
|
|
],
|
2017-12-29 17:12:55 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
input_glue_dep = declare_dependency(
|
|
|
|
link_with: input_glue,
|
|
|
|
dependencies: [
|
|
|
|
input_plugins_dep,
|
|
|
|
fs_dep,
|
|
|
|
config_dep,
|
|
|
|
tag_dep,
|
|
|
|
],
|
|
|
|
)
|
2020-05-05 14:45:18 +02:00
|
|
|
|
|
|
|
configure_file(output: 'Features.h', configuration: input_features)
|