mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 22:00:25 +08:00
cmake: find_package with QUIET
This commit is contained in:
parent
017a4e7c30
commit
0b1ae11498
@ -20,7 +20,7 @@ if(NOT OPENCV_EXAMPLES_SKIP_PARALLEL_BACKEND_TBB
|
|||||||
AND NOT OPENCV_EXAMPLES_SKIP_TBB
|
AND NOT OPENCV_EXAMPLES_SKIP_TBB
|
||||||
AND NOT OPENCV_EXAMPLE_SKIP_TBB # deprecated (to be removed in OpenCV 5.0)
|
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)
|
if(NOT TBB_FOUND)
|
||||||
find_path(TBB_INCLUDE_DIR NAMES "tbb/tbb.h")
|
find_path(TBB_INCLUDE_DIR NAMES "tbb/tbb.h")
|
||||||
find_library(TBB_LIBRARY NAMES "tbb")
|
find_library(TBB_LIBRARY NAMES "tbb")
|
||||||
|
Loading…
Reference in New Issue
Block a user