summaryrefslogtreecommitdiff
path: root/data/pixmaps/meson.build
blob: 95324a923ba08b7b87ac011ff098851498b18ab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
gdm_icons = [
  [ 16, [ 'gdm-xnest.png' ] ],
  [ 32, [ 'gdm-setup.png', 'gdm-xnest.png' ] ],
  [ 48, [ 'gdm.png', 'gdm-setup.png', 'gdm-xnest.png' ] ],
]

foreach size : gdm_icons
  size_str = '@0@x@0@'.format(size[0])
  icons_install_dir = join_paths(gdm_datadir, 'icons', 'hicolor', size_str, 'apps')

  foreach png : size[1]
    install_data(join_paths(size_str, png),
      install_dir: icons_install_dir,
    )
  endforeach
endforeach


install_data(
  'gdm-foot-logo.png',
  'nobody.png',
  'nohost.png',
  install_dir: join_paths(gdm_datadir, 'pixmaps'),
)