summaryrefslogtreecommitdiff
path: root/shm/meson.build
blob: 07f77d06931664ddfb419c95783069f148380698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
sources = files(
  'dconf-shm.c',
  'dconf-shm-mockable.c',
)

libdconf_shm = static_library(
  'dconf-shm',
  sources: sources,
  include_directories: top_inc,
  dependencies: glib_dep,
  c_args: dconf_c_args,
  pic: true,
)

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


libdconf_shm_test = static_library(
  'dconf-shm-test',
  sources: 'dconf-shm.c',
  include_directories: top_inc,
  dependencies: glib_dep,
  c_args: dconf_c_args,
  pic: true,
)

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