# Copyright 2020-2024 David Robillard # SPDX-License-Identifier: 0BSD OR ISC option('benchmarks', type: 'feature', yield: true, description: 'Build benchmarks') option('checks', type: 'feature', value: 'enabled', yield: true, description: 'Check for platform-specific features') option('docs', type: 'feature', yield: true, description: 'Build documentation') option('html', type: 'feature', yield: true, description: 'Build paginated HTML documentation') option('lint', type: 'boolean', value: false, yield: true, description: 'Run code quality checks') option('posix', type: 'feature', yield: true, description: 'Use POSIX system facilities') option('singlehtml', type: 'feature', yield: true, description: 'Build single-page HTML documentation') option('threads', type: 'feature', yield: true, description: 'Enable thread support') option('tests', type: 'feature', yield: true, description: 'Build tests') option('tests_cpp', type: 'feature', yield: true, description: 'Build C++ standard library comparison tests') option('title', type: 'string', value: 'Zix', description: 'Project title') option('win_ver', type: 'combo', value: 'win8', choices: ['nt4', 'winxp', 'vista', 'win8'], description: 'Latest Windows API version to use') option('win_wchar', type: 'feature', yield: true, description: 'Use UTF-16 wchar_t and UNICODE with Windows API')