Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion kernels/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,13 @@ add_library (${TARGET_NAME} STATIC ${OVX_SRC_NNEF_LIB} )
# no longer pulls it in transitively, so force-include it for this target.
target_compile_options(${TARGET_NAME} PRIVATE -include limits)

install ( TARGETS ${TARGET_NAME}
install ( TARGETS ${TARGET_NAME}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} )

install ( DIRECTORY ${CMAKE_SOURCE_DIR}/kernels/NNEF-Tools/parser/cpp/include/
DESTINATION include )

set_target_properties( ${TARGET_NAME} PROPERTIES FOLDER ${HELPER_FOLDER} )
endif (OPENVX_CONFORMANCE_NNEF_IMPORT)
2 changes: 1 addition & 1 deletion sample/framework/vx_event_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ VX_API_ENTRY vx_status VX_API_CALL vxSendUserEvent(vx_context context, vx_uint32
event.type = VX_EVENT_USER;
event.timestamp = ownCaptureTime();
event.app_value = id;
event.event_info.user_event.user_event_parameter = parameter;
event.event_info.user_event.user_event_parameter = (void *)parameter;

return ownPipelinePostEvent(context, &event);
}
Expand Down
Loading