Write.as GTK desktop app https://write.as/apps/desktop
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
668 B

  1. icon_sizes = ['16', '24', '32', '48', '64', '128']
  2. foreach i : icon_sizes
  3. install_data(
  4. join_paths('icons', i, meson.project_name() + '.png'),
  5. install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps'
  6. )
  7. )
  8. endforeach
  9. install_data('icons/writeas-bright-dark.png',
  10. install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', '16x16', 'actions'))
  11. install_data('com.github.writeas.writeas-gtk.desktop',
  12. install_dir: join_paths(get_option('datadir'), 'applications'))
  13. install_data('com.github.writeas.writeas-gtk.appdata.xml',
  14. install_dir: join_paths(get_option('datadir'), 'metainfo'))