[IE][CMAKE] Add some libraries to ie_developer export list (#2279)

The following libraries:

* `vpu_common_lib_test_static`
* `ieTestHelpers_s`

Those libraries might be helpful for standalone plugins tests.
This commit is contained in:
Vladislav Vinogradov
2020-09-17 15:24:19 +03:00
committed by GitHub
parent f30656ed6d
commit 60ad6edf32
2 changed files with 3 additions and 3 deletions

View File

@@ -45,10 +45,10 @@ function(add_common_target TARGET_NAME STATIC_IE)
if(NOT STATIC_IE)
add_cpplint_target(${TARGET_NAME}_cpplint FOR_TARGETS ${TARGET_NAME} CUSTOM_FILTERS "+runtime/explicit")
ie_developer_export_targets(${TARGET_NAME})
endif()
ie_developer_export_targets(${TARGET_NAME})
target_link_libraries(${TARGET_NAME} PUBLIC ${NGRAPH_LIBRARIES} inference_engine_transformations
PRIVATE openvino::itt)
endfunction()

View File

@@ -28,4 +28,4 @@ target_link_libraries(${TARGET_NAME} PUBLIC
# developer package
ie_developer_export_targets(${TARGET_NAME} ${EXPORT_DEPENDENCIES})
ie_developer_export_targets(${TARGET_NAME} ${EXPORT_DEPENDENCIES} ieTestHelpers_s)