summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/12 multiple gir/gir/meson.build
blob: 5a52c9c2b6dbf3cb54893bc632b9b75ccc0119e8 (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
libsources = ['meson-subsample.c', 'meson-subsample.h']

girsubproject = shared_library(
  'girsubproject',
  sources : libsources,
  dependencies : [gobj, girlib_dep],
  install : true
)

girexe = executable(
  'girprog',
  sources : 'prog.c',
  dependencies : [gobj, girlib_dep],
  link_with : girsubproject
)

gnome.generate_gir(
  girsubproject,
  sources : libsources,
  nsversion : '1.0',
  namespace : 'MesonSub',
  symbol_prefix : 'meson_sub_',
  identifier_prefix : 'MesonSub',
  includes : ['GObject-2.0', meson_gir],
  install : true,
  install_dir_gir: false,
)

message('TEST: ' + girsubproject.outdir())

test('gobject introspection/subproject/c', girexe)