summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt27
1 files changed, 17 insertions, 10 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 3eac738..4222993 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,35 +1,42 @@
-# Copyright 2020-2023 David Robillard <d@drobilla.net>
+# Copyright 2020-2024 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR ISC
-option('benchmarks', type: 'feature', value: 'auto', yield: true,
+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', value: 'auto', yield: true,
+option('docs', type: 'feature', yield: true,
description: 'Build documentation')
-option('html', type: 'feature', value: 'auto', yield: true,
+option('html', type: 'feature', yield: true,
description: 'Build paginated HTML documentation')
-option('lint', type: 'boolean', value: false, yield: true,
+option('lint', type: 'boolean', value: false,
description: 'Run code quality checks')
-option('posix', type: 'feature', value: 'auto', yield: true,
+option('posix', type: 'feature', yield: true,
description: 'Use POSIX system facilities')
-option('singlehtml', type: 'feature', value: 'auto', yield: true,
+option('singlehtml', type: 'feature', yield: true,
description: 'Build single-page HTML documentation')
-option('threads', type: 'feature', value: 'auto', yield: true,
+option('threads', type: 'feature', yield: true,
description: 'Enable thread support')
-option('tests', type: 'feature', value: 'auto', yield: true,
+option('tests', type: 'feature', yield: true,
description: 'Build tests')
-option('tests_cpp', type: 'feature', value: 'auto', yield: true,
+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')