From 31a887b66d71804fb4be8fb49a454bea92dc36a5 Mon Sep 17 00:00:00 2001 From: Khairul Azhar Kasmiran Date: Wed, 6 Dec 2023 20:11:05 +0800 Subject: [PATCH] Bump minimum meson version to 0.62.2 --- README.md | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c80b68c..a9e9906 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ For usage information, see [the documentation](doc/README.md). ## Building python plugin Requirements: - rizin > 0.4.1 (needs commit [59b38e6](https://github.com/rizinorg/rizin/commit/59b38e6efaf00b9b9869e0ec5baba4f1b9605f37)) -- meson +- meson >= 0.62.2 - ninja - python >= 3.7 - libclang diff --git a/meson.build b/meson.build index 65822ed..2d4e869 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('rz-bindgen', 'c', 'cpp', version: '0.6.0', license: 'LGPL3', - meson_version: '>=0.53.0', + meson_version: '>=0.62.2', default_options: ['python.install_env=auto']) pymod = import('python')