summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: aa802b66f44a984216dbd77a6e62c572ab3ba5bc (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
34
35
option('package-name',
  type: 'string',
  value: '',
  description: 'The value for the GETTEXT_PACKAGE define.'
)

option('package-version',
  type: 'string',
  value: '',
  description: 'The value for the PACKAGE_VERSION define.'
)

option('pkglibdir',
  type: 'string',
  value: '',
  description: 'The private directory the shared library/typelib will be installed into.'
)

option('pkgdatadir',
  type: 'string',
  value: '',
  description: 'The private directory the gir file will be installed into.'
)

option('static',
  type: 'boolean',
  value: false,
  description: 'Build as a static library.'
)

option('with-introspection',
  type: 'boolean',
  value: false,
  description: 'Build gobject-introspection support'
)