diff options
author | Marc-André Lureau | 2019-08-17 11:55:58 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-08-21 12:30:33 +0200 |
commit | 2c44220d055d12142f27cf513848f17d6007ae35 (patch) | |
tree | 72593b21d3f6e20a325be46bfc05b69457e14244 /hw/lm32 | |
parent | meson: convert hw/9pfs, cleanup (diff) | |
download | qemu-2c44220d055d12142f27cf513848f17d6007ae35.tar.gz qemu-2c44220d055d12142f27cf513848f17d6007ae35.tar.xz qemu-2c44220d055d12142f27cf513848f17d6007ae35.zip |
meson: convert hw/arch*
Each architecture's sourceset is placed in an hw_arch dictionary, and picked up
from there when building the per-emulator static_library.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/lm32')
-rw-r--r-- | hw/lm32/Makefile.objs | 3 | ||||
-rw-r--r-- | hw/lm32/meson.build | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/hw/lm32/Makefile.objs b/hw/lm32/Makefile.objs deleted file mode 100644 index c3941866c7..0000000000 --- a/hw/lm32/Makefile.objs +++ /dev/null @@ -1,3 +0,0 @@ -# LM32 boards -obj-$(CONFIG_LM32) += lm32_boards.o -obj-$(CONFIG_MILKYMIST) += milkymist.o diff --git a/hw/lm32/meson.build b/hw/lm32/meson.build new file mode 100644 index 0000000000..8caf0a727f --- /dev/null +++ b/hw/lm32/meson.build @@ -0,0 +1,6 @@ +lm32_ss = ss.source_set() +# LM32 boards +lm32_ss.add(when: 'CONFIG_LM32', if_true: files('lm32_boards.c')) +lm32_ss.add(when: 'CONFIG_MILKYMIST', if_true: files('milkymist.c')) + +hw_arch += {'lm32': lm32_ss} |