Browse Source

Add a meson build system, correct icon size.

8min on this task (I'll semantic for all future commits).
tags/v1.0.0
Adrian Cochrane 6 years ago
parent
commit
e7eff31d3f
3 changed files with 11 additions and 0 deletions
  1. BIN
      data/icons/write-as.png
  2. +8
    -0
      data/meson.build
  3. +3
    -0
      meson.build

BIN
data/icons/write-as.png View File

Before After
Width: 192  |  Height: 192  |  Size: 22 KiB Width: 128  |  Height: 128  |  Size: 14 KiB

+ 8
- 0
data/meson.build View File

@@ -0,0 +1,8 @@
install_data('icons/write-as.png',
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', '128x128', 'apps')
)

install_data('write-as-gtk.desktop',
install_dir: join_paths(get_option('datadir'), 'applications'))
install_data('write-as-gtk.appdata.xml',
install_dir: join_paths(get_option('datadir'), 'metainfo'))

+ 3
- 0
meson.build View File

@@ -0,0 +1,3 @@
project('write-as-gtk', ['vala', 'c'], meson_version: '>=0.40.1')

subdir('data')

Loading…
Cancel
Save