exiv2/meson_options.txt
Rosen Penev 063a99b3c3 add meson build
This is a fairly basic meson file that builds only the library. Useful
for stuff like WrapDB.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2023-02-06 13:44:57 -08:00

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