mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-01 12:46:12 +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
|
endif
|
||||||
|
|
||||||
if not get_option('dbus').disabled() and dbus.found()
|
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']
|
drivers += ['daydream']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if 'arduino' not in drivers
|
if 'auto' in drivers and 'arduino' not in drivers
|
||||||
drivers += ['arduino']
|
drivers += ['arduino']
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue