* install necessary dirs to tests * rem RUNTIME from install step * fix paths * fix install paths * fix install paths: add destination dirs * add pandas * fix requirements conflict - change pytest version to ~5 * remove comment from requirements.txt * upd numpy version
26 lines
820 B
CMake
26 lines
820 B
CMake
# Copyright (C) 2018-2021 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
|
|
if (CMAKE_BUILD_TYPE STREQUAL "")
|
|
message(STATUS "CMAKE_BUILD_TYPE not defined, 'Release' will be used")
|
|
set(CMAKE_BUILD_TYPE "Release")
|
|
endif()
|
|
|
|
# Define directory where artifacts will be placed
|
|
set(OUTPUT_ROOT ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
find_package(InferenceEngineDeveloperPackage REQUIRED)
|
|
|
|
set(OpenVINO_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../")
|
|
|
|
add_subdirectory(common)
|
|
add_subdirectory(unittests)
|
|
add_subdirectory(memleaks_tests)
|
|
add_subdirectory(memcheck_tests)
|
|
|
|
install(DIRECTORY scripts/ DESTINATION tests/stress_tests/scripts COMPONENT tests EXCLUDE_FROM_ALL)
|
|
install(DIRECTORY .automation/ DESTINATION tests/stress_tests/.automation COMPONENT tests EXCLUDE_FROM_ALL)
|