mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
meson: convert hw/adc
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
a9d4825542
commit
b53d555f69
4 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
ifeq ($(CONFIG_SOFTMMU), y)
|
ifeq ($(CONFIG_SOFTMMU), y)
|
||||||
devices-dirs-$(call lor,$(CONFIG_VIRTIO_9P),$(call land,$(CONFIG_VIRTFS),$(CONFIG_XEN))) += 9pfs/
|
devices-dirs-$(call lor,$(CONFIG_VIRTIO_9P),$(call land,$(CONFIG_VIRTFS),$(CONFIG_XEN))) += 9pfs/
|
||||||
devices-dirs-y += acpi/
|
devices-dirs-y += acpi/
|
||||||
devices-dirs-y += adc/
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
common-obj-y += $(devices-dirs-y)
|
common-obj-y += $(devices-dirs-y)
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
common-obj-$(CONFIG_STM32F2XX_ADC) += stm32f2xx_adc.o
|
|
1
hw/adc/meson.build
Normal file
1
hw/adc/meson.build
Normal file
|
@ -0,0 +1 @@
|
||||||
|
softmmu_ss.add(when: 'CONFIG_STM32F2XX_ADC', if_true: files('stm32f2xx_adc.c'))
|
|
@ -1,3 +1,4 @@
|
||||||
|
subdir('adc')
|
||||||
subdir('audio')
|
subdir('audio')
|
||||||
subdir('block')
|
subdir('block')
|
||||||
subdir('char')
|
subdir('char')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue