summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPavel Hrdina <phrdina@redhat.com>2020-06-18 00:53:18 +0200
committerPavel Hrdina <phrdina@redhat.com>2020-08-03 09:26:59 +0200
commit116f94913f4ca836e64bb718ac6fc31d8f7a83a7 (patch)
tree1db1fafb4a1704f951e1a36468d0cd8ee12c53cf /scripts
parent30b301c6eaa96ea386e6fccca3f3648aa1172589 (diff)
downloadlibvirt-116f94913f4ca836e64bb718ac6fc31d8f7a83a7.tar.gz
meson: add scripts directory
Signed-off-by: Pavel Hrdina <phrdina@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Neal Gompa <ngompa13@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/meson.build29
1 files changed, 29 insertions, 0 deletions
diff --git a/scripts/meson.build b/scripts/meson.build
new file mode 100644
index 0000000000..941e40a091
--- /dev/null
+++ b/scripts/meson.build
@@ -0,0 +1,29 @@
+scripts = [
+ 'apibuild.py',
+ 'augeas-gentest.py',
+ 'check-aclperms.py',
+ 'check-aclrules.py',
+ 'check-driverimpls.py',
+ 'check-drivername.py',
+ 'check-file-access.py',
+ 'check-remote-protocol.py',
+ 'check-symfile.py',
+ 'check-symsorting.py',
+ 'dtrace2systemtap.py',
+ 'esx_vi_generator.py',
+ 'genaclperms.py',
+ 'genpolkit.py',
+ 'gensystemtap.py',
+ 'group-qemu-caps.py',
+ 'header-ifdef.py',
+ 'hvsupport.py',
+ 'hyperv_wmi_generator.py',
+ 'mock-noinline.py',
+ 'prohibit-duplicate-header.py',
+ 'test-wrap-argv.py',
+]
+
+foreach name : scripts
+ sname = name.split('.')[0].underscorify()
+ set_variable('@0@_prog'.format(sname), find_program(name))
+endforeach