build(vendor): vendor libraries now install in a dedicated directory

We now install vendor libraries into includedir/fourdst/vendor to avoid conflicts with user installed libraries. Note that currently this only applies to headers and not compiled shared libraries

BREAKING CHANGE:
This commit is contained in:
2026-06-05 11:36:42 +02:00
parent 3937a2b828
commit 2b8a4bd60f
5 changed files with 18 additions and 5 deletions

View File

@@ -32,6 +32,6 @@ reflect_cpp_dep = declare_dependency(
install_subdir(
'include',
install_dir: get_option('includedir'),
install_dir: get_option('includedir') / 'fourdst' / 'vendor',
strip_directory: true
)