1# -*- mode: meson -*- 2# SPDX-License-Identifier: GPL-2.0 3 4option('version-tag', type : 'string', 5 description : 'override the git version string') 6option('vsock', type : 'boolean', value : true, 7 description : 'build with vsock support') 8option('ptrace', type : 'boolean', value : true, 9 description : 'build with ptrace support') 10option('htmldir', type : 'string', value : 'share/doc/trace-cmd-doc', 11 description : 'directory for HTML documentation') 12option('asciidoctor', type : 'boolean', value: false, 13 description : 'use asciidoctor instead of asciidoc') 14option('docbook-xls-172', type : 'boolean', value : false, 15 description : 'enable docbook XLS 172 workaround') 16option('asciidoc-no-roff', type : 'boolean', value : false, 17 description : 'enable no roff workaround') 18option('man-bold-literal', type : 'boolean', value : false, 19 description : 'enable bold literals') 20option('docbook-suppress-sp', type : 'boolean', value : false, 21 description : 'docbook suppress sp') 22option('python', type : 'combo', choices : ['auto', 'true', 'false'], 23 description : 'Generate trac-cmd Python bindings') 24