diff options
author | Andrea Pappacoda <andrea@pappacoda.it> | 2022-02-03 19:04:57 +0100 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-02-27 11:45:26 -0500 |
commit | fcca265035a92eac2773f85a79a8ad142a9bb795 (patch) | |
tree | de508a4109db5e48feeb1ace7b0789a763fe295a /test cases/cmake | |
parent | c42a3fd2fbefce7797766f81f14b89ef0e4c5dcc (diff) | |
download | meson-fcca265035a92eac2773f85a79a8ad142a9bb795.zip meson-fcca265035a92eac2773f85a79a8ad142a9bb795.tar.gz meson-fcca265035a92eac2773f85a79a8ad142a9bb795.tar.bz2 |
cmake: configure_package_config_file can now take a dict
Diffstat (limited to 'test cases/cmake')
-rw-r--r-- | test cases/cmake/20 cmake file/meson.build | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test cases/cmake/20 cmake file/meson.build b/test cases/cmake/20 cmake file/meson.build index 758bbee..5c45d66 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"'}, ) |