Moved inference_engine samples to cpp folder (#8615)

* Moved inference_engine samples to cpp folder

* Fixed documentations links

* Fixed installation

* Fixed scripts

* Fixed cmake script

* Try to fix install

* Fixed samples

* Some fix
This commit is contained in:
Ilya Churaev
2021-11-18 10:08:20 +03:00
committed by GitHub
parent 03c8542357
commit f639e4e902
112 changed files with 110 additions and 115 deletions

View File

@@ -0,0 +1,12 @@
# Copyright (C) 2018-2021 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
#
file (GLOB SRC ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp
file (GLOB HDR ${CMAKE_CURRENT_SOURCE_DIR}/*.hpp)
${CMAKE_CURRENT_SOURCE_DIR}/*.h)
ie_add_sample(NAME speech_sample
SOURCES ${SRC}
HEADERS ${HDR}
DEPENDENCIES cnpy ie_samples_utils)