We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 012c4dd commit 052179dCopy full SHA for 052179d
cmake/OpenCVDownload.cmake
@@ -83,6 +83,13 @@ endfunction()
83
84
function(ocv_download)
85
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
93
94
function(ocv_download_log)
95
file(APPEND "${OPENCV_DOWNLOAD_LOG}" "${ARGN}\n")
0 commit comments