commit 74238e0f7d7c3a944ea2e8297128b5077d5f9933 Author: Emily Boudreaux Date: Wed Feb 19 14:50:44 2025 -0500 build(yaml-cpp): added yaml-cpp as a dependency config files will be written in yaml, added a well tested yaml parser to 4DSSE diff --git a/build-config/yaml-cpp/meson.build b/build-config/yaml-cpp/meson.build new file mode 100644 index 0000000..434a233 --- /dev/null +++ b/build-config/yaml-cpp/meson.build @@ -0,0 +1,5 @@ +yaml_cpp_sp = cmake.subproject( + 'yaml-cpp' +) +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 diff --git a/subprojects/yaml-cpp.wrap b/subprojects/yaml-cpp.wrap new file mode 100644 index 0000000..df0133d --- /dev/null +++ b/subprojects/yaml-cpp.wrap @@ -0,0 +1,5 @@ +[wrap-git] +url = https://github.com/jbeder/yaml-cpp.git +revision = yaml-cpp-0.7.0 + +[cmake] \ No newline at end of file