The open source OpenXR runtime
0
fork

Configure Feed

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

meson: Add ONNX Runtime as a dependency for the handtracking driver

authored by

Moses Turner and committed by
Moses Turner
dd5cbee0 4b5f4b97

+2 -1
+2 -1
meson.build
··· 78 78 gst_app = dependency('gstreamer-app-1.0', required: false) 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 + onnxruntime = dependency('libonnxruntime', required: false) 81 82 82 83 gst_found = gst.found() and gst_app.found() and gst_video.found() 83 84 ··· 177 178 endif 178 179 endif 179 180 180 - if has_v4l2_header and ('auto' in drivers or 'handtracking' in drivers) 181 + if opencv.found() and onnxruntime.found() and has_v4l2_header and ('auto' in drivers or 'handtracking' in drivers) 181 182 if 'handtracking' not in drivers 182 183 drivers += ['handtracking'] 183 184 endif