The open source OpenXR runtime
0
fork

Configure Feed

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

cmake: Don't build t_euroc_recorder on Windows

+4 -2
+4 -2
src/xrt/auxiliary/tracking/CMakeLists.txt
··· 26 26 t_debug_hsv_filter.cpp 27 27 t_debug_hsv_picker.cpp 28 28 t_debug_hsv_viewer.cpp 29 - t_euroc_recorder.cpp 30 - t_euroc_recorder.h 31 29 t_file.cpp 32 30 t_frame_cv_mat_wrapper.cpp 33 31 t_frame_cv_mat_wrapper.hpp ··· 45 43 PUBLIC ${OpenCV_LIBRARIES} 46 44 PRIVATE aux_util_sink 47 45 ) 46 + # t_euroc_recorder needs a Windows implementation of os_realtime_get_ns. 47 + if(NOT WIN32) 48 + target_sources(aux_tracking PRIVATE t_euroc_recorder.cpp t_euroc_recorder.h) 49 + endif() 48 50 endif() 49 51 50 52 if(XRT_FEATURE_SLAM)