2019-09-28 00:25:07 +10:00
|
|
|
#
|
|
|
|
|
# General build options
|
|
|
|
|
#
|
|
|
|
|
option(
|
|
|
|
|
'contractor',
|
|
|
|
|
type: 'boolean',
|
|
|
|
|
value: false,
|
|
|
|
|
description: 'Whether to install the contractor file (Elementary OS-specific).'
|
|
|
|
|
)
|
|
|
|
|
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(
|
|
|
|
|
'libunwind_optional',
|
|
|
|
|
type: 'boolean',
|
|
|
|
|
value: false,
|
|
|
|
|
description: 'Determines if libunwind is required.'
|
|
|
|
|
)
|
|
|
|
|
option(
|
|
|
|
|
'poodle',
|
|
|
|
|
type: 'boolean',
|
|
|
|
|
value: true,
|
|
|
|
|
description: 'Whether to apply the POODLE SSLv3 fix.'
|
|
|
|
|
)
|
|
|
|
|
option(
|
|
|
|
|
'tnef-support',
|
|
|
|
|
type: 'boolean',
|
|
|
|
|
value: true,
|
|
|
|
|
description: 'Whether to support TNEF attachments (requires libytnef).'
|
|
|
|
|
)
|
|
|
|
|
option(
|
|
|
|
|
'valadoc',
|
|
|
|
|
type: 'boolean',
|
|
|
|
|
value: false,
|
|
|
|
|
description: 'Whether to build the documentaton (requires valadoc).'
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Development options
|
2019-05-03 19:47:57 -04:00
|
|
|
option(
|
|
|
|
|
'profile',
|
|
|
|
|
type: 'combo',
|
|
|
|
|
value: 'default',
|
2019-08-28 22:13:01 +10:00
|
|
|
choices: ['default','development','beta'],
|
|
|
|
|
description: 'Specifies the application type to be built'
|
2019-05-03 19:47:57 -04:00
|
|
|
)
|
2019-09-28 00:25:07 +10:00
|
|
|
option(
|
|
|
|
|
'ref_tracking',
|
|
|
|
|
type: 'boolean',
|
|
|
|
|
value: false,
|
|
|
|
|
description: 'Whether to use explicit reference tracking.'
|
|
|
|
|
)
|