summaryrefslogtreecommitdiff
path: root/sendto/meson.build
blob: bf4f81652a126047300dba6d55e95351b378b683 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name = 'bluetooth-sendto'

deps = [
  gtk_dep,
  dependency('gio-2.0')
]

cflags = [
  '-DDATADIR="@0@"'.format(gnomebt_datadir),
  '-DICONDIR="@0@"'.format(gnomebt_icondir),
  '-DLOCALEDIR="@0@"'.format(gnomebt_localedir)
]

executable(
  name,
  'main.c',
  include_directories: [
    top_inc,
    lib_inc
  ],
  dependencies: deps,
  c_args: cflags,
  link_with: libgnome_bluetooth,
  install: true,
  install_dir: gnomebt_bindir
)

install_man(
  name + '.1',
  install_dir: join_paths(gnomebt_mandir, 'man1')
)

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

desktop = name + '.desktop'

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

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