Fixes
This commit is contained in:
parent
c3fbe8bb39
commit
9f5168214b
@ -200,6 +200,12 @@ jobs:
|
||||
- script: ls -alR $(INSTALL_DIR)
|
||||
displayName: 'List install files'
|
||||
|
||||
- script: cat $(INSTALL_DIR)/runtime/cmake/OpenVINOConfig.cmake
|
||||
displayName: 'Cat OpenVINOConfig'
|
||||
|
||||
- script: cat $(INSTALL_DIR)/runtime/cmake/OpenVINOConfig-Release.cmake
|
||||
displayName: 'Cat OpenVINOConfig targets'
|
||||
|
||||
- script: $(INSTALL_DIR)/samples/cpp/build_samples.sh
|
||||
workingDirectory: $(BUILD_SAMPLES_DIR)
|
||||
displayName: 'Build cpp samples'
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
file(GLOB_RECURSE ENGINES_UTIL_SRC "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp" "${CMAKE_CURRENT_SOURCE_DIR}/*.hpp")
|
||||
|
||||
add_library(engines_test_util STATIC ${ENGINES_UTIL_SRC})
|
||||
add_library(engines_test_util STATIC EXCLUDE_FROM_ALL ${ENGINES_UTIL_SRC})
|
||||
|
||||
if(COMMAND ie_faster_build)
|
||||
ie_faster_build(engines_test_util UNITY)
|
||||
|
@ -20,7 +20,7 @@ set (SRC
|
||||
pass/shape_relevance.hpp
|
||||
)
|
||||
|
||||
add_library(ngraph_backend SHARED ${SRC})
|
||||
add_library(ngraph_backend SHARED EXCLUDE_FROM_ALL ${SRC})
|
||||
|
||||
if(COMMAND ie_faster_build)
|
||||
ie_faster_build(ngraph_backend
|
||||
|
@ -12,7 +12,7 @@ set(SRC
|
||||
ie_executable.hpp
|
||||
)
|
||||
|
||||
add_library(ie_backend SHARED ${SRC})
|
||||
add_library(ie_backend SHARED EXCLUDE_FROM_ALL ${SRC})
|
||||
|
||||
if(COMMAND ie_faster_build)
|
||||
ie_faster_build(ie_backend
|
||||
|
@ -2,7 +2,8 @@
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
add_library(interpreter_backend SHARED int_backend.cpp int_executable.cpp evaluates_map.cpp)
|
||||
add_library(interpreter_backend SHARED EXCLUDE_FROM_ALL
|
||||
int_backend.cpp int_executable.cpp evaluates_map.cpp)
|
||||
|
||||
if(COMMAND ie_faster_build)
|
||||
ie_faster_build(interpreter_backend
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
file(GLOB_RECURSE UTIL_SRC "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp" "${CMAKE_CURRENT_SOURCE_DIR}/*.hpp")
|
||||
|
||||
add_library(ngraph_test_util STATIC ${UTIL_SRC})
|
||||
add_library(ngraph_test_util STATIC EXCLUDE_FROM_ALL ${UTIL_SRC})
|
||||
|
||||
if(COMMAND ie_faster_build)
|
||||
ie_faster_build(ngraph_test_util UNITY)
|
||||
|
Loading…
Reference in New Issue
Block a user