aboutsummaryrefslogtreecommitdiff
path: root/hw/hyperv
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2019-08-16 19:02:41 +0400
committerPaolo Bonzini <pbonzini@redhat.com>2020-08-21 06:30:31 -0400
commitcc4d76a3ed2937900038ea0223fc182b945103bc (patch)
treef5760f55ee87c71c7fecc62c0041365ca0f81241 /hw/hyperv
parentc8d9333f1fa7f7ae336369957aa6d85b95ea7120 (diff)
downloadqemu-cc4d76a3ed2937900038ea0223fc182b945103bc.zip
qemu-cc4d76a3ed2937900038ea0223fc182b945103bc.tar.gz
qemu-cc4d76a3ed2937900038ea0223fc182b945103bc.tar.bz2
meson: convert hw/hyperv
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/hyperv')
-rw-r--r--hw/hyperv/Makefile.objs3
-rw-r--r--hw/hyperv/meson.build3
2 files changed, 3 insertions, 3 deletions
diff --git a/hw/hyperv/Makefile.objs b/hw/hyperv/Makefile.objs
deleted file mode 100644
index 5b614e0..0000000
--- a/hw/hyperv/Makefile.objs
+++ /dev/null
@@ -1,3 +0,0 @@
-obj-y += hyperv.o
-obj-$(CONFIG_HYPERV_TESTDEV) += hyperv_testdev.o
-obj-$(CONFIG_VMBUS) += vmbus.o
diff --git a/hw/hyperv/meson.build b/hw/hyperv/meson.build
new file mode 100644
index 0000000..1367e29
--- /dev/null
+++ b/hw/hyperv/meson.build
@@ -0,0 +1,3 @@
+specific_ss.add(when: 'CONFIG_HYPERV', if_true: files('hyperv.c'))
+specific_ss.add(when: 'CONFIG_HYPERV_TESTDEV', if_true: files('hyperv_testdev.c'))
+specific_ss.add(when: 'CONFIG_VMBUS', if_true: files('vmbus.c'))