You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
Meson
52 lines
1.1 KiB
Meson
option('curl', type : 'feature',
|
|
description : 'USE Libcurl for HttpIo (WEBREADY)',
|
|
)
|
|
|
|
option('brotli', type : 'feature',
|
|
description : 'Build with brotli support (requires libbrotlidec)',
|
|
)
|
|
|
|
option('nls', type : 'feature',
|
|
description : 'Build native language support (requires gettext)',
|
|
)
|
|
|
|
option('png', type : 'feature',
|
|
description : 'Build with png support (requires libz)',
|
|
)
|
|
|
|
option('iconv', type : 'feature',
|
|
description : 'Build with iconv support',
|
|
)
|
|
|
|
option('inih', type : 'feature',
|
|
description : 'Build with INIReader support',
|
|
)
|
|
|
|
option('bmff', type : 'boolean',
|
|
value: true,
|
|
description : 'Build with BMFF support',
|
|
)
|
|
|
|
option('lensdata', type : 'boolean',
|
|
value: true,
|
|
description : 'Build including lens data',
|
|
)
|
|
|
|
option('video', type : 'boolean',
|
|
value: true,
|
|
description : 'Build support for video formats',
|
|
)
|
|
|
|
option('xmp', type : 'feature',
|
|
description : 'Build support for XMP',
|
|
)
|
|
|
|
option('unitTests', type : 'feature',
|
|
description : 'Build and run unit tests',
|
|
)
|
|
|
|
option('webready', type : 'boolean',
|
|
value: true,
|
|
description : 'Build with support for webready',
|
|
)
|