summaryrefslogtreecommitdiff
path: root/shm/meson.build
blob: 42fe03abce62538b8c532f6886170b7a4f099e32 (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
)