Skip to content

Commit 052179d

Browse files
committed
hunter: disable external download when building with Hunter
The only package that is allowed to use `ocv_download()` is `IPPICV` as it is tricked to use the Hunter provided file.
1 parent 012c4dd commit 052179d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

cmake/OpenCVDownload.cmake

+7
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,13 @@ endfunction()
8383

8484
function(ocv_download)
8585
cmake_parse_arguments(DL "UNPACK;RELATIVE_URL" "FILENAME;HASH;DESTINATION_DIR;ID;STATUS" "URL" ${ARGN})
86+
if(HUNTER_ENABLED)
87+
if (DL_ID STREQUAL "IPPICV")
88+
message(DEBUG "ocv_download(): IPPICV allowed while using Hunter, continue")
89+
else()
90+
message(FATAL_ERROR "ocv_download(): downloading external resources not allowed while bulding with Hunter. Args: ${ARGV}")
91+
endif()
92+
endif()
8693

8794
function(ocv_download_log)
8895
file(APPEND "${OPENCV_DOWNLOAD_LOG}" "${ARGN}\n")

0 commit comments

Comments
 (0)