Add a meson build system, correct icon size.

8min on this task (I'll semantic for all future commits).
This commit is contained in:
Adrian Cochrane 2018-04-17 10:00:09 +12:00
parent 6ae9f4af9d
commit e7eff31d3f
3 changed files with 11 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 14 KiB

8
data/meson.build Normal file
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
meson.build Normal file
View File

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