From fcca265035a92eac2773f85a79a8ad142a9bb795 Mon Sep 17 00:00:00 2001 From: Andrea Pappacoda Date: Thu, 3 Feb 2022 19:04:57 +0100 Subject: cmake: configure_package_config_file can now take a dict --- test cases/cmake/20 cmake file/meson.build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'test cases/cmake') diff --git a/test cases/cmake/20 cmake file/meson.build b/test cases/cmake/20 cmake file/meson.build index 758bbee2d..5c45d66f9 100644 --- a/test cases/cmake/20 cmake file/meson.build +++ b/test cases/cmake/20 cmake file/meson.build @@ -4,11 +4,9 @@ project( cmake = import('cmake') -cmake_conf = configuration_data() -cmake_conf.set_quoted('foo', 'bar') cmake.configure_package_config_file( name : 'foolib', input : 'foolib.cmake.in', install_dir : get_option('libdir') / 'cmake', - configuration : cmake_conf, + configuration : {'foo': '"bar"'}, ) -- cgit v1.3