summaryrefslogtreecommitdiff
path: root/sendto/meson.build
blob: ea718dab1553b91702f21b62238eb39e816999b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name = 'bluetooth-sendto'

executable(
  name,
  'main.c',
  include_directories: top_inc,
  dependencies: [libgnome_bluetooth_dep, gtk_dep, libadwaita_dep],
  install: true,
)

install_man(name + '.1')

desktop_conf = configuration_data()
desktop_conf.set('VERSION', gnomebt_version)

desktop = name + '.desktop'

desktop_in = configure_file(
  input: desktop + '.in.in',
  output: '@BASENAME@',
  configuration: desktop_conf,
)

i18n.merge_file (
  type: 'desktop',
  input: desktop_in,
  output: desktop,
  po_dir: po_dir,
  install: true,
  install_dir: gnomebt_datadir / 'applications',
)