Browse Source
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>pull/96/head
committed by
Paolo Bonzini
5 changed files with 8 additions and 4 deletions
@ -1,3 +0,0 @@ |
|||
common-obj-$(CONFIG_DIMM) += pc-dimm.o |
|||
common-obj-y += memory-device.o |
|||
common-obj-$(CONFIG_NVDIMM) += nvdimm.o |
|||
@ -0,0 +1,6 @@ |
|||
mem_ss = ss.source_set() |
|||
mem_ss.add(files('memory-device.c')) |
|||
mem_ss.add(when: 'CONFIG_DIMM', if_true: files('pc-dimm.c')) |
|||
mem_ss.add(when: 'CONFIG_NVDIMM', if_true: files('nvdimm.c')) |
|||
|
|||
softmmu_ss.add_all(when: 'CONFIG_MEM_DEVICE', if_true: mem_ss) |
|||
Loading…
Reference in new issue