summaryrefslogtreecommitdiffstats
path: root/plugins/wwan/meson.build
blob: 238288c6977773fcfa70bb483f9b8765d9b82f3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
sources = files(
  'cc-wwan-device.c',
  'gsd-wwan-manager.c',
  'main.c'
)

deps = plugins_deps + [gio_dep, gcr_dep, mm_glib_dep, polkit_gobject_dep]

cflags += ['-DGNOMECC_DATA_DIR="@0@"'.format(gsd_pkgdatadir)]

executable(
  'gsd-' + plugin_name,
  sources,
  include_directories: [top_inc, common_inc],
  dependencies: deps,
  c_args: cflags,
  install: true,
  install_rpath: gsd_pkglibdir,
  install_dir: gsd_libexecdir
)