Files
openvino/tools/CMakeLists.txt
Ilya Lavrenov bd0117d648 Vcpkg conan fixes (#17765)
* Small fixes for openvino::pugixml creation for Dev packages

* Flexiable components installation

* Fixed compilation for x86

* Added extra checks for ENABLE_NCC_STYLE

* Fixed typo in RPM
2023-05-29 15:40:51 +04:00

42 lines
837 B
CMake

# Copyright (C) 2018-2023 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
#
# C++ tools
#
if(ENABLE_COMPILE_TOOL)
add_subdirectory(compile_tool)
endif()
if(ENABLE_SAMPLES)
add_subdirectory(legacy/benchmark_app)
endif()
#
# Python tools
#
# install deployment_manager
ov_cpack_add_component(${OV_CPACK_COMP_DEPLOYMENT_MANAGER} HIDDEN)
install(DIRECTORY deployment_manager
DESTINATION ${OV_CPACK_TOOLSDIR}
COMPONENT ${OV_CPACK_COMP_DEPLOYMENT_MANAGER}
${OV_CPACK_COMP_DEPLOYMENT_MANAGER_EXCLUDE_ALL}
USE_SOURCE_PERMISSIONS)
# MO
add_subdirectory(mo)
# POT
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/pot/openvino/tools/pot/version.txt.in"
"${CMAKE_CURRENT_SOURCE_DIR}/pot/openvino/tools/pot/version.txt" @ONLY)
# wheel openvino-dev
add_subdirectory(openvino_dev)