mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-29 11:06:18 +00:00
build/meson: Make it possible to disable daydream&arduino
This commit is contained in:
parent
92d94ddcc7
commit
dbf804cfcb
|
@ -211,11 +211,11 @@ if survive.found() and ('auto' in drivers and 'survive' not in drivers)
|
|||
endif
|
||||
|
||||
if not get_option('dbus').disabled() and dbus.found()
|
||||
if 'daydream' not in drivers
|
||||
if 'auto' in drivers and 'daydream' not in drivers
|
||||
drivers += ['daydream']
|
||||
endif
|
||||
|
||||
if 'arduino' not in drivers
|
||||
if 'auto' in drivers and 'arduino' not in drivers
|
||||
drivers += ['arduino']
|
||||
endif
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue