diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-09-03 16:59:33 +0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-08-21 06:30:22 -0400 |
commit | 708eab42dc75304473f23ea1ead06d579dcb7566 (patch) | |
tree | 9e5afcc394ccfdc4deafdcfab9cacee795af983f /dump | |
parent | 0e1309d0c56fcfce14bd314aa73e35f65c2856b5 (diff) |
meson: convert dump/
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'dump')
-rw-r--r-- | dump/Makefile.objs | 3 | ||||
-rw-r--r-- | dump/meson.build | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/dump/Makefile.objs b/dump/Makefile.objs deleted file mode 100644 index d2a5db3b81..0000000000 --- a/dump/Makefile.objs +++ /dev/null @@ -1,3 +0,0 @@ -obj-y += dump.o -common-obj-y += dump-hmp-cmds.o -obj-$(TARGET_X86_64) += win_dump.o diff --git a/dump/meson.build b/dump/meson.build new file mode 100644 index 0000000000..2eff29c3ea --- /dev/null +++ b/dump/meson.build @@ -0,0 +1,4 @@ +softmmu_ss.add(files('dump-hmp-cmds.c')) + +specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: [files('dump.c'), snappy, lzo]) +specific_ss.add(when: ['CONFIG_SOFTMMU', 'TARGET_X86_64'], if_true: files('win_dump.c')) |