Quellcode durchsuchen

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 vor 6 Jahren
Ursprung
Commit
e7eff31d3f
3 geänderte Dateien mit 11 neuen und 0 gelöschten Zeilen
  1. BIN
      data/icons/write-as.png
  2. +8
    -0
      data/meson.build
  3. +3
    -0
      meson.build

BIN
data/icons/write-as.png Datei anzeigen

Vorher Nachher
Breite: 192  |  Höhe: 192  |  Größe: 22 KiB Breite: 128  |  Höhe: 128  |  Größe: 14 KiB

+ 8
- 0
data/meson.build Datei anzeigen

@@ -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 Datei anzeigen

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

subdir('data')

Laden…
Abbrechen
Speichern