Files
openvino/inference-engine/samples/benchmark_app/CMakeLists.txt
Artemy Skrebkov aa23fbb9d3 Update benchmark_app to pass precision and layout via command line (#4167)
* 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
2021-02-11 15:53:19 +03:00

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)