From f8bb9814a1d160c5c770f399489936f228f24c75 Mon Sep 17 00:00:00 2001 From: Ilya Churaev Date: Tue, 30 May 2023 08:06:22 +0400 Subject: [PATCH] Suppress warnings for transformations --- src/common/transformations/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/transformations/CMakeLists.txt b/src/common/transformations/CMakeLists.txt index 196e91cb726..8a52ac6e274 100644 --- a/src/common/transformations/CMakeLists.txt +++ b/src/common/transformations/CMakeLists.txt @@ -4,6 +4,9 @@ set(TARGET_NAME "inference_engine_transformations") +# Suppress warnings with FactoryRegistry autogenerated destructor +ov_deprecated_no_errors() + file(GLOB_RECURSE LIBRARY_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp) file(GLOB_RECURSE PUBLIC_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/include/*.hpp)