summaryrefslogtreecommitdiff
path: root/shm/meson.build
blob: d904cd08b9ace4e8918652ac1ef0b1fdac4154dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
sources = files('dconf-shm.c')

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

libdconf_shm = static_library(
  meson.project_name() + '-shm',
  sources: sources,
  include_directories: top_inc,
  dependencies: glib_dep,
  c_args: cflags,
  pic: true
)