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
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ICON_SIZES=16x16 24x24 32x32 48x48 64x64 128x128 256x256 512x512
|
|
||||||
|
|
||||||
# Needed by "meson install"
|
# Needed by "meson install"
|
||||||
export DESTDIR
|
export DESTDIR
|
||||||
install: all install-datadir install-localstatedir
|
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)"
|
mkdir -p "$(DESTDIR)$(qemu_desktopdir)"
|
||||||
$(INSTALL_DATA) $(SRC_PATH)/ui/qemu.desktop \
|
$(INSTALL_DATA) $(SRC_PATH)/ui/qemu.desktop \
|
||||||
"$(DESTDIR)$(qemu_desktopdir)/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
|
endif
|
||||||
|
|
||||||
subdir('shader')
|
subdir('shader')
|
||||||
|
subdir('icons')
|
||||||
|
|
||||||
modules += {'ui': ui_modules}
|
modules += {'ui': ui_modules}
|
||||||
|
Loading…
Reference in New Issue
Block a user