fix(yaml-cpp): yaml-cpp now installs headers as well to allow for external project linking

This commit is contained in:
2025-06-22 05:30:09 -04:00
parent 07f1e8d7d7
commit 299612af7d

View File

@@ -9,4 +9,7 @@ yaml_cpp_sp = cmake.subproject(
'yaml-cpp',
options: yaml_cpp_cmake_options,
)
yaml_cpp_dep = yaml_cpp_sp.dependency('yaml-cpp')
yaml_cpp_dep = yaml_cpp_sp.dependency('yaml-cpp')
yaml_cpp_headers = meson.project_source_root() + '/subprojects/yaml-cpp/include/yaml-cpp'
install_subdir(yaml_cpp_headers, install_dir: get_option('includedir'))