build(header_install_dir-+-vendor): vendored quill and added header_install_dir option

this helps with wheel installs

BREAKING CHANGE:
This commit is contained in:
2026-06-11 09:51:16 -04:00
parent 6f06cf03a7
commit 8817be5831
4 changed files with 18 additions and 6 deletions

View File

@@ -15,8 +15,11 @@ quill_sp = cmake.subproject(
quill_dep = quill_sp.dependency('quill')
if get_option('default_library') != 'static' and get_option('lib_install_dir') == ''
if get_option('default_library') != 'static'
message('Registering quill headers for installation...')
quill_headers = meson.global_source_root() + '/subprojects/quill/include/quill'
install_subdir(quill_headers, install_dir: get_option('includedir'))
install_subdir(quill_headers, install_dir: vendor_logging_header_install_dir)
endif