* Move processing ins and outs into samples/common
- To re-use it in compile_tool and benchmark_app
* Extract common into samples_utils lib
- To re-use it in samples and tools
* Move processLayout into samples_utils
* Clean up
* Enable warning as errors for samples_utils
* Cannot set precision or layout for compiled network
* Remove layout setting for benchmark_app
- It requires further discussion
* Fix compilation of samples
* Fix one more sample
* Fix windows build
* Update README.md
* One more fix for windows
* Fix OpenVino ONNX CI build
* More build fixes
* Move os and vpu common into utils
* Fix build for myriad tools
* Fix windows build
* Export gflags
14 lines
381 B
CMake
14 lines
381 B
CMake
# Copyright (C) 2018-2020 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
file (GLOB SRC ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
|
|
file (GLOB HDR ${CMAKE_CURRENT_SOURCE_DIR}/*.hpp)
|
|
|
|
ie_add_sample(NAME benchmark_app
|
|
SOURCES ${SRC}
|
|
HEADERS ${HDR}
|
|
DEPENDENCIES format_reader ie_samples_utils
|
|
OPENCV_DEPENDENCIES imgcodecs)
|
|
|