forked from libusb/libusb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
meson_options.txt
14 lines (13 loc) · 1.21 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-License-Identifier: BSD-3-Clause
# SPDX-FileCopyrightText: 2023 L. E. Segovia <[email protected]>
option('install_targets', type: 'boolean', value: true, description: 'whether to install the built targets')
option('udev', type: 'feature', value: 'enabled', description: 'use udev for device enumeration and hotplug support (recommended)')
option('eventfd', type: 'feature', description: 'use eventfd for signalling')
option('timerfd', type: 'feature', description: 'use timerfd for timing')
option('log', type: 'feature', value: 'enabled', description: 'enable all logging')
option('debug_log', type: 'feature', value: 'disabled', description: 'start with debug message logging enabled')
option('system_log', type: 'feature', value: 'disabled', description: 'output logging messages to the systemwide log, if supported by the OS')
option('examples', type: 'feature', value: 'disabled', description: 'build example applications')
option('tests', type: 'feature', value: 'disabled', description: 'build test applications')
option('docs', type: 'feature', value: 'auto', description: 'build documentation')
option('build_native', type: 'boolean', value: false, description: 'build targets for the build machine instead of the host machine')