2025-02-19 16:11:55 -05:00
|
|
|
config_dep = declare_dependency(
|
2026-06-05 11:36:42 +02:00
|
|
|
include_directories: [
|
|
|
|
|
include_directories('include'),
|
|
|
|
|
include_directories('include/fourdst/config'),
|
|
|
|
|
],
|
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
|
|
|
|
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-11 10:56:54 -04:00
|
|
|
install_headers(config_headers, install_dir: config_header_install_dir)
|
|
|
|
|
install_headers(config_exception_headers, install_dir: config_header_install_dir / 'exceptions')
|