2025-02-19 16:11:55 -05:00
|
|
|
config_dep = declare_dependency(
|
2025-06-22 04:52:04 -04:00
|
|
|
include_directories: include_directories('include'),
|
2025-12-06 10:55:46 -05:00
|
|
|
dependencies: [reflect_cpp_dep],
|
2025-02-19 16:11:55 -05:00
|
|
|
)
|
|
|
|
|
|
2025-06-22 04:52:04 -04:00
|
|
|
config_headers = files(
|
2026-06-05 10:08:14 +02:00
|
|
|
'include/fourdst/config/config.h',
|
|
|
|
|
'include/fourdst/config/base.h',
|
|
|
|
|
'include/fourdst/config/cli.h',
|
|
|
|
|
'include/fourdst/config/ansi.h',
|
|
|
|
|
'include/fourdst/config/validate.h',
|
2025-06-22 04:52:04 -04:00
|
|
|
)
|
2026-06-05 10:08:14 +02:00
|
|
|
install_headers(config_headers, subdir : 'fourdst/config')
|
|
|
|
|
|
2026-06-05 11:19:17 +02:00
|
|
|
config_exception_headers = files(
|
2026-06-05 10:08:14 +02:00
|
|
|
'include/fourdst/config/exceptions/exceptions.h',
|
|
|
|
|
)
|
2026-06-05 11:19:17 +02:00
|
|
|
install_headers(config_exception_headers, subdir : 'fourdst/config/exceptions')
|
2026-06-05 10:08:14 +02:00
|
|
|
|