From d42d945be5d4fb8748b82c22be09abce40fe5ad3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Tue, 23 Apr 2024 14:09:08 +0200 Subject: [PATCH] meson: Specify Meson version required --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 013c8d5..e7e0e1d 100644 --- a/meson.build +++ b/meson.build @@ -2,6 +2,7 @@ project('frida-python', 'c', version: run_command(find_program('python3'), files('scripts' / 'version.py'), capture: true, check: true).stdout().strip(), + meson_version: '>=1.3.0', ) python = import('python').find_installation()