summaryrefslogtreecommitdiff
path: root/gdbus/meson.build
blob: c22a81d0e838cb8e30178dbe84d3c40a1aa3ed13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sources = files('dconf-gdbus-thread.c')

cflags = '-DG_LOG_DOMAIN="@0@"'.format(meson.project_name())

libdconf_gdbus_thread = static_library(
  meson.project_name() + '-gdbus-thread',
  sources: sources,
  include_directories: top_inc,
  dependencies: gio_unix_dep,
  c_args: cflags,
  pic: true
)

sources = files('dconf-gdbus-filter.c')

libdconf_gdbus_filter = static_library(
  meson.project_name() + '-gdbus-filter',
  sources: sources,
  include_directories: top_inc,
  dependencies: gio_unix_dep,
  c_args: cflags,
  pic: true
)