2019-09-28 00:25:07 +10:00
|
|
|
#
|
|
|
|
|
# General build options
|
|
|
|
|
#
|
2020-10-03 21:06:43 +10:00
|
|
|
|
2019-09-28 00:25:07 +10:00
|
|
|
option(
|
2020-10-03 21:06:43 +10:00
|
|
|
'profile',
|
|
|
|
|
type: 'combo',
|
2020-10-03 21:59:01 +10:00
|
|
|
choices: [
|
|
|
|
|
'auto',
|
|
|
|
|
'development',
|
|
|
|
|
'beta',
|
|
|
|
|
'release'
|
|
|
|
|
],
|
2020-10-03 21:06:43 +10:00
|
|
|
description: 'Specifies the application type to be built'
|
|
|
|
|
)
|
|
|
|
|
option(
|
|
|
|
|
'revno',
|
|
|
|
|
type: 'string',
|
|
|
|
|
description: 'Custom revision string (default extracted from "git describe")'
|
2019-09-28 00:25:07 +10:00
|
|
|
)
|
|
|
|
|
option(
|
|
|
|
|
'iso_639_xml',
|
|
|
|
|
type: 'string',
|
|
|
|
|
value: '',
|
|
|
|
|
description: 'Full path to the ISO 639 XML file.'
|
|
|
|
|
)
|
|
|
|
|
option(
|
|
|
|
|
'iso_3166_xml',
|
|
|
|
|
type: 'string',
|
|
|
|
|
value: '',
|
|
|
|
|
description: 'Full path to the ISO 3166 XML file.'
|
|
|
|
|
)
|
|
|
|
|
option(
|
|
|
|
|
'valadoc',
|
2020-10-03 21:06:43 +10:00
|
|
|
type: 'feature',
|
|
|
|
|
value: 'auto',
|
|
|
|
|
description: 'Build API documentation'
|
2019-09-28 00:25:07 +10:00
|
|
|
)
|
|
|
|
|
|
2020-10-03 21:06:43 +10:00
|
|
|
#
|
2019-09-28 00:25:07 +10:00
|
|
|
# Development options
|
2020-10-03 21:06:43 +10:00
|
|
|
#
|
|
|
|
|
|
2019-05-03 19:47:57 -04:00
|
|
|
option(
|
2020-10-03 21:06:43 +10:00
|
|
|
'ref_tracking',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
value: 'disabled',
|
|
|
|
|
description: 'Enable Geary.BaseObject reference tracking'
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Optional features
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
option(
|
|
|
|
|
'contractor',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
value: 'disabled',
|
|
|
|
|
description: 'Install an Elementary OS a contractor file'
|
2019-05-03 19:47:57 -04:00
|
|
|
)
|
2019-09-28 00:25:07 +10:00
|
|
|
option(
|
2020-10-03 21:06:43 +10:00
|
|
|
'libunwind',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
value: 'enabled',
|
|
|
|
|
description: 'Use libunwind for back traces in problem reports.'
|
2019-09-28 00:25:07 +10:00
|
|
|
)
|
2020-03-29 23:53:24 -04:00
|
|
|
option(
|
2020-10-03 21:06:43 +10:00
|
|
|
'tnef',
|
|
|
|
|
type: 'feature',
|
|
|
|
|
value: 'enabled',
|
|
|
|
|
description: 'Support Microsoft-proprietary TNEF attachments.'
|
2020-03-29 23:53:24 -04:00
|
|
|
)
|
2023-10-09 10:38:33 +02:00
|
|
|
option(
|
|
|
|
|
'delayed_replay_queue',
|
|
|
|
|
type: 'boolean',
|
|
|
|
|
value: false,
|
|
|
|
|
description: 'Add delay in session opening (for debug purpose only)'
|
|
|
|
|
)
|