1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-09 23:34:23 +00:00
magic_enum/meson_options.txt
2023-04-24 23:36:25 +04:00

20 lines
395 B
Meson

option(
'test',
type : 'boolean',
value : true,
description : 'Build and run tests'
)
option(
'noascii',
type : 'boolean',
value : false,
description : 'Enable support for non-ASCII enumeration identifier'
)
option(
'hash',
type : 'boolean',
value : false,
description : 'Do hashing at build time - longer build times, but O(1) string lookup'
)