* Port to meson * plugin generation script: swtich to meson, update to python3, switch to libpeas, add some extra options, and cleanup * clean up some build warnings * kill xed-bugreport.sh with fire: it isn't used anymore, and probably doesn't even work * update gzip command to avoid warnings on some systems and move appdata.xml to /usr/share/metainfo/ as that's where it's supposed to go now * POTFILES.in: fix path that changed in the meson port, which was causing makepot to fail
24 lines
449 B
Meson
24 lines
449 B
Meson
option(
|
|
'enable_spell',
|
|
type : 'boolean',
|
|
value : true,
|
|
description : 'enable gspell'
|
|
)
|
|
option(
|
|
'enable_gvfs_metadata',
|
|
type : 'boolean',
|
|
value : true,
|
|
description : 'enable gvfs metadata'
|
|
)
|
|
option('docs',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Build the API references (requires gtk-doc)'
|
|
)
|
|
option(
|
|
'deprecated_warnings',
|
|
type : 'boolean',
|
|
value : false,
|
|
description: 'Show build warnings for deprecations'
|
|
)
|