summaryrefslogtreecommitdiff
path: root/shm/meson.build
blob: 57a9852927c11b497b89e7800e531f4131c83bba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
libdconf_shm = static_library(
  'dconf-shm',
  sources: 'dconf-shm.c',
  include_directories: top_inc,
  dependencies: glib_dep,
  c_args: '-DG_LOG_DOMAIN="dconf"',
  pic: true,
)

libdconf_shm_dep = declare_dependency(
  dependencies: glib_dep,
  link_with: libdconf_shm,
)