introduce meson.build file

Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
This commit is contained in:
Pavel Hrdina 2024-10-25 14:48:27 +02:00 committed by Pavel Hrdina
parent 0755711372
commit d803491c47
2 changed files with 7 additions and 4 deletions

7
meson.build Normal file
View File

@ -0,0 +1,7 @@
project('virt-manager',
version: '4.1.0',
meson_version: '>=0.63.0',
)
python = import('python')
python3 = python.find_installation('python3')

View File

@ -5,10 +5,6 @@
import sys
if sys.version_info.major < 3:
print("virt-manager is python3 only. Run this as ./setup.py")
sys.exit(1)
import glob
import importlib.util
import os