The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

meson: Allow percetto to be used with meson

You may need to specify --libdir=$installdir/lib when installing percetto,
otherwise it gets installed on $installdir/lib/x86_64-linux-gnu by default and
meson might not look for the appropriate pkgconfig in there.

authored by

Mateo de Mayo and committed by
Jakob Bornecrantz
d61a695f f9d0bfb8

+9
+1
meson.build
··· 79 79 gst_video= dependency('gstreamer-video-1.0', required: false) 80 80 depthai = dependency('depthai', method: 'cmake', modules : ['depthai::core', 'depthai::opencv', 'XLink'], required: false) 81 81 onnxruntime = dependency('libonnxruntime', required: false) 82 + percetto = dependency('percetto', required: false) 82 83 83 84 gst_found = gst.found() and gst_app.found() and gst_video.found() 84 85
+4
src/xrt/auxiliary/meson.build
··· 16 16 aux_util_deps += libbsd 17 17 endif 18 18 19 + if percetto.found() 20 + aux_util_deps += percetto 21 + endif 22 + 19 23 lib_aux_util = static_library( 20 24 'aux_util', 21 25 files(
+4
src/xrt/include/xrt/meson.build
··· 119 119 have_conf.set('XRT_HAVE_WAYLAND_DIRECT', true) 120 120 endif 121 121 122 + if percetto.found() 123 + have_conf.set('XRT_HAVE_PERCETTO', true) 124 + endif 125 + 122 126 xrt_config_have_h = configure_file( 123 127 output: 'xrt_config_have.h', 124 128 configuration: have_conf,