Fix openvino_mock_py_frontend target compilation (missing openvino::runtime dependency) (#13393)

This commit is contained in:
Orest Chura 2022-10-08 11:17:51 +04:00 committed by GitHub
parent a8abfa221b
commit 1e5ff24834
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,6 +26,7 @@ target_compile_definitions(${TARGET_NAME} PUBLIC
$<$<BOOL:${ENABLE_OV_PADDLE_FRONTEND}>:ENABLE_OV_PADDLE_FRONTEND>) $<$<BOOL:${ENABLE_OV_PADDLE_FRONTEND}>:ENABLE_OV_PADDLE_FRONTEND>)
target_link_libraries(${TARGET_NAME} PUBLIC target_link_libraries(${TARGET_NAME} PUBLIC
openvino::runtime
$<$<BOOL:${ENABLE_OV_ONNX_FRONTEND}>:openvino::frontend::onnx> $<$<BOOL:${ENABLE_OV_ONNX_FRONTEND}>:openvino::frontend::onnx>
$<$<BOOL:${ENABLE_OV_TF_FRONTEND}>:openvino::frontend::tensorflow> $<$<BOOL:${ENABLE_OV_TF_FRONTEND}>:openvino::frontend::tensorflow>
$<$<BOOL:${ENABLE_OV_PADDLE_FRONTEND}>:openvino::frontend::paddle>) $<$<BOOL:${ENABLE_OV_PADDLE_FRONTEND}>:openvino::frontend::paddle>)