From 0b1ae11498022c290950043b38a2f707ff676be7 Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Tue, 26 Oct 2021 14:29:57 +0000 Subject: [PATCH] cmake: find_package with QUIET --- samples/cpp/tutorial_code/core/parallel_backend/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/cpp/tutorial_code/core/parallel_backend/CMakeLists.txt b/samples/cpp/tutorial_code/core/parallel_backend/CMakeLists.txt index 9d4f91d4a5..857d9b76ef 100644 --- a/samples/cpp/tutorial_code/core/parallel_backend/CMakeLists.txt +++ b/samples/cpp/tutorial_code/core/parallel_backend/CMakeLists.txt @@ -20,7 +20,7 @@ if(NOT OPENCV_EXAMPLES_SKIP_PARALLEL_BACKEND_TBB AND NOT OPENCV_EXAMPLES_SKIP_TBB AND NOT OPENCV_EXAMPLE_SKIP_TBB # deprecated (to be removed in OpenCV 5.0) ) - find_package(TBB) + find_package(TBB QUIET) if(NOT TBB_FOUND) find_path(TBB_INCLUDE_DIR NAMES "tbb/tbb.h") find_library(TBB_LIBRARY NAMES "tbb")