mirror of
https://github.com/qemu/qemu.git
synced 2024-11-23 19:03:38 +08:00
meson: install icons
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20200826130622.553318-4-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
f5aa6320e8
commit
a4d88926c6
12
Makefile
12
Makefile
@ -239,22 +239,10 @@ ifeq ($(CONFIG_GUEST_AGENT),y)
|
||||
endif
|
||||
endif
|
||||
|
||||
ICON_SIZES=16x16 24x24 32x32 48x48 64x64 128x128 256x256 512x512
|
||||
|
||||
# Needed by "meson install"
|
||||
export DESTDIR
|
||||
install: all install-datadir install-localstatedir
|
||||
for s in $(ICON_SIZES); do \
|
||||
mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps"; \
|
||||
$(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu_$${s}.png \
|
||||
"$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps/qemu.png"; \
|
||||
done; \
|
||||
mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps"; \
|
||||
$(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu_32x32.bmp \
|
||||
"$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps/qemu.bmp"; \
|
||||
mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps"; \
|
||||
$(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu.svg \
|
||||
"$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps/qemu.svg"
|
||||
mkdir -p "$(DESTDIR)$(qemu_desktopdir)"
|
||||
$(INSTALL_DATA) $(SRC_PATH)/ui/qemu.desktop \
|
||||
"$(DESTDIR)$(qemu_desktopdir)/qemu.desktop"
|
||||
|
13
ui/icons/meson.build
Normal file
13
ui/icons/meson.build
Normal file
@ -0,0 +1,13 @@
|
||||
foreach s: [16, 24, 32, 48, 64, 128, 256, 512]
|
||||
s = '@0@x@0@'.format(s.to_string())
|
||||
install_data('qemu_@0@.png'.format(s),
|
||||
rename: 'qemu.png',
|
||||
install_dir: config_host['qemu_icondir'] / 'hicolor' / s / 'apps')
|
||||
endforeach
|
||||
|
||||
install_data('qemu_32x32.bmp',
|
||||
rename: 'qemu.bmp',
|
||||
install_dir: config_host['qemu_icondir'] / 'hicolor' / '32x32' / 'apps')
|
||||
|
||||
install_data('qemu.svg',
|
||||
install_dir: config_host['qemu_icondir'] / 'hicolor' / 'scalable' / 'apps')
|
@ -112,5 +112,6 @@ if have_system or xkbcommon.found()
|
||||
endif
|
||||
|
||||
subdir('shader')
|
||||
subdir('icons')
|
||||
|
||||
modules += {'ui': ui_modules}
|
||||
|
Loading…
Reference in New Issue
Block a user