From b074655dcb30c098cb0bc3fee4a046a35813bb81 Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Fri, 25 Apr 2025 10:39:10 -0400 Subject: [PATCH] fix(resource-manager): fixed old style calls to opat-core tboudreaux:feature/mixedPolytrope implimented a fix to bring old style opat-core calls to the more up to date style. This change has been fast forwarded into main --- build-config/yaml-cpp/meson.build | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build-config/yaml-cpp/meson.build b/build-config/yaml-cpp/meson.build index 434a233..27c9332 100644 --- a/build-config/yaml-cpp/meson.build +++ b/build-config/yaml-cpp/meson.build @@ -1,5 +1,10 @@ +yaml_cpp_cmake_options = cmake.subproject_options() +yaml_cpp_cmake_options.add_cmake_defines({ + 'CMAKE_POLICY_VERSION_MINIMUM': '3.5' +}) yaml_cpp_sp = cmake.subproject( - 'yaml-cpp' + 'yaml-cpp', + options: yaml_cpp_cmake_options, ) yaml_cpp_dep = yaml_cpp_sp.dependency('yaml-cpp') add_project_arguments('-I' + meson.current_build_dir() + '/subprojects/yaml-cpp/__CMake_build', language: 'cpp') \ No newline at end of file