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.
44 lines
944 B
Meson
44 lines
944 B
Meson
2 years ago
|
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 : 'boolean',
|
||
|
value: true,
|
||
|
description : 'Build support for XMP',
|
||
|
)
|