* Build using conanfile.txt * Update .ci/azure/linux_arm64.yml * Several improvements * Removed conanfile.py * Try to use activate / deactivate * Fixed clang-format code style * Supported TBB version from Conan * Added more NOMINMAX * Fixed static build * More improvements for static build * Add usage of static snappy in case of static build * More fixes * Small fixes * Final fixes
18 lines
510 B
CMake
18 lines
510 B
CMake
# Copyright (C) 2018-2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
#
|
|
# Install licensing
|
|
#
|
|
|
|
ov_cpack_add_component(${OV_CPACK_COMP_LICENSING} HIDDEN)
|
|
|
|
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/
|
|
DESTINATION ${OV_CPACK_LICENSESDIR}
|
|
COMPONENT ${OV_CPACK_COMP_LICENSING}
|
|
PATTERN CMakeLists.txt EXCLUDE
|
|
PATTERN dev-third-party-programs.txt EXCLUDE
|
|
PATTERN documentation-third-party-programs.txt EXCLUDE
|
|
PATTERN third-party-programs.txt EXCLUDE)
|