Files
openvino/inference-engine/tests_deprecated/CMakeLists.txt
Ilya Churaev 77f6a0076b Move core components (#8869)
* Moved openvino to src

* Moved ngraph and frontends to src

* Fixed cmake generation

* Moved inference_engine libs to src

* Moved C API to src

* Fixed CMake generation

* Moved readers to tests, snippets and preprocessing to common

* Fixed CMake

* Moved transformations and lp_transformations

* Fixed transformations cmake

* Fixed build

* Fixed unit-tests and ci paths

* Fixed docs

* Fixed C API build

* Try to fix static build

* More clear order

* Renamed inference_engine_legacy_api to legacy

* Fixed some cmake scripts

* Fixed path to legacy

* Fixed Myriad plugin

* Fixed v7 reader

* Fixed plugin.hpp

* Fixed developer config

* Fixed ie_parallel
2021-11-27 18:53:12 +03:00

29 lines
479 B
CMake

# Copyright (C) 2018-2021 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
#
enable_testing()
if(NOT MSVC)
ie_add_compiler_flags(-Wno-unused-variable)
endif()
add_subdirectory(readers)
add_subdirectory(helpers)
if (ENABLE_GAPI_TESTS)
add_subdirectory(fluid_preproc)
endif()
if (ENABLE_FUNCTIONAL_TESTS)
add_subdirectory(functional)
endif()
if (ENABLE_BEH_TESTS)
add_subdirectory(behavior)
endif()
if(ENABLE_TESTS)
add_subdirectory(unit)
endif()