Files
libconfig/build-config/tomlpp/meson.build
Emily Boudreaux 2b8a4bd60f 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:
2026-06-05 11:36:42 +02:00

7 lines
276 B
Meson

tomlpp_dep = dependency('tomlplusplus', required: true, static: true).as_system()
install_subdir(
meson.project_source_root() / 'subprojects' / 'tomlplusplus-3.4.0' / 'include',
install_dir: get_option('includedir') / 'fourdst' / 'vendor',
strip_directory: true
)