Swiftgram/meson_options.txt
Bryce Harrington 3df7886b6d Fixes a spelling and some minor formatting.
Change-Id: Ie6a0f4706eae8cf87335aaeabec2b66050109ef0
2018-09-27 13:46:31 +09:00

33 lines
580 B
Meson

option('test',
type: 'boolean',
value: false,
description: 'Enable building unit tests')
option('example',
type: 'boolean',
value: true,
description: 'Enable building examples')
option('text',
type: 'boolean',
value: false,
description: 'Enable text module')
option('asan',
type: 'boolean',
value: false,
description: 'Enable address sanitizer')
option('msan',
type: 'boolean',
value: false,
description: 'Enable memory sanitizer')
option('tsan',
type: 'boolean',
value: false,
description: 'Enable thread sanitizer')