summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/11 gir subproject/subprojects/mesongir/meson.build
blob: 027b4ee8000cd088fdef3b0bf9e530af6c5dc614 (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
project('gobject-introspection-subproject', 'c')

gnome = import('gnome')
gobj = dependency('gobject-2.0')

libsources = ['meson-sample.c', 'meson-sample.h']

girlib = shared_library(
  'girlib',
  sources : libsources,
  dependencies : gobj,
  install : true
)

girtarget = gnome.generate_gir(
  girlib,
  sources : libsources,
  nsversion : '1.0',
  namespace : 'Meson',
  symbol_prefix : 'meson_',
  identifier_prefix : 'Meson',
  includes : ['GObject-2.0'],
  install : true
)

meson_gir = declare_dependency(link_with : girlib,
  include_directories : [include_directories('.')],
  dependencies : [gobj],
  # Everything that uses libgst needs this built to compile
  sources : girtarget,
)