* 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
29 lines
479 B
CMake
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()
|