summaryrefslogtreecommitdiff
path: root/tools/meson.build
blob: 86fc70311ab75c60d804fcf226225ee0d83193b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
executable('mate-color-select',
  'mate-color-select.c',
  c_args: [
    '-DLOCALE_DIR="@0@"'.format(join_paths(get_option('prefix'), get_option('localedir'))),
  ],
  dependencies: [ gtk_dep, libmate_desktop_dep, ],
  include_directories: top_inc,
  install: true,
)

i18n.merge_file(
  input: 'mate-color-select.desktop.in',
  output: 'mate-color-select.desktop',
  type: 'desktop',
  po_dir: '../po',
  install: true,
  install_dir: join_paths(get_option('datadir'), 'applications'),
)