mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-06 07:06:10 +00:00
meson: Re-arrange config header code
This commit is contained in:
parent
19efff937e
commit
4a22851e4a
|
@ -27,6 +27,16 @@ xrt_config_drivers = declare_dependency(
|
||||||
#
|
#
|
||||||
|
|
||||||
have_conf = configuration_data()
|
have_conf = configuration_data()
|
||||||
|
|
||||||
|
if build_egl
|
||||||
|
have_conf.set('XRT_HAVE_EGL', true)
|
||||||
|
endif
|
||||||
|
if avcodec.found()
|
||||||
|
have_conf.set('XRT_HAVE_FFMPEG', true)
|
||||||
|
endif
|
||||||
|
if libjpeg.found()
|
||||||
|
have_conf.set('XRT_HAVE_JPEG', true)
|
||||||
|
endif
|
||||||
if udev.found()
|
if udev.found()
|
||||||
have_conf.set('XRT_HAVE_LIBUDEV', true)
|
have_conf.set('XRT_HAVE_LIBUDEV', true)
|
||||||
endif
|
endif
|
||||||
|
@ -35,20 +45,12 @@ if libusb.found()
|
||||||
have_conf.set('XRT_HAVE_LIBUSB', true)
|
have_conf.set('XRT_HAVE_LIBUSB', true)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if opencv.found()
|
|
||||||
have_conf.set('XRT_HAVE_OPENCV', true)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if libjpeg.found()
|
|
||||||
have_conf.set('XRT_HAVE_JPEG', true)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if libuvc.found()
|
if libuvc.found()
|
||||||
have_conf.set('XRT_HAVE_LIBUVC', true)
|
have_conf.set('XRT_HAVE_LIBUVC', true)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if avcodec.found()
|
if opencv.found()
|
||||||
have_conf.set('XRT_HAVE_FFMPEG', true)
|
have_conf.set('XRT_HAVE_OPENCV', true)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if sdl2.found()
|
if sdl2.found()
|
||||||
|
|
Loading…
Reference in a new issue