build(yaml-cpp): disable yaml-cpp tests

this prevents gtest linking conflicts
This commit is contained in:
2025-06-12 11:22:09 -04:00
parent cf9e7277ae
commit 91590f3745

View File

@@ -2,7 +2,8 @@ yaml_cpp_cmake_options = cmake.subproject_options()
yaml_cpp_cmake_options.add_cmake_defines({
'CMAKE_POLICY_VERSION_MINIMUM': '3.5',
'BUILD_SHARED_LIBS': 'ON',
'CMAKE_SKIP_INSTALL_RULES': 'ON'
'CMAKE_SKIP_INSTALL_RULES': 'ON',
'YAML_CPP_BUILD_TESTS': 'OFF'
})
yaml_cpp_sp = cmake.subproject(
'yaml-cpp',