From a97c9ed35baa68ddefa8034cf97e13718034a246 Mon Sep 17 00:00:00 2001 From: Shaun McCance Date: Mon, 1 Feb 2021 20:03:22 -0500 Subject: Switch to new python tools --- meson.build | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'meson.build') diff --git a/meson.build b/meson.build index e705550..475f4bb 100644 --- a/meson.build +++ b/meson.build @@ -6,6 +6,11 @@ project('yelp-tools', gnome = import('gnome') +python = import('python') +pyinst = python.find_installation('python3', required: true) +lxml = run_command('python3', '-c', 'import lxml') +assert(lxml.returncode() == 0, 'Python module `lxml` required') + # Versioning version = meson.project_version() version_arr = version.split('.') -- cgit v1.2.1