mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
673 B
21 lines
673 B
set(__OCV_MODE_VARS_DIR "${CMAKE_CURRENT_LIST_DIR}") |
|
|
|
macro(ocv_change_mode_var) |
|
set(__var "${ARGV0}") |
|
set(__mode "${ARGV1}") |
|
set(__value "${ARGV2}") |
|
if(__mode STREQUAL "MODIFIED_ACCESS" AND __value) |
|
if(NOT __applied_mode_${__var}) |
|
include("${__OCV_MODE_VARS_DIR}/${__var}.cmake") |
|
set(__applied_mode_${__var} 1) |
|
else() |
|
#message("Mode is already applied: ${__var}") |
|
endif() |
|
endif() |
|
endmacro() |
|
|
|
variable_watch(OPENCV_DISABLE_THREAD_SUPPORT ocv_change_mode_var) |
|
set(OPENCV_DISABLE_THREAD_SUPPORT "${OPENCV_DISABLE_THREAD_SUPPORT}") |
|
|
|
variable_watch(OPENCV_SEMIHOSTING ocv_change_mode_var) |
|
set(OPENCV_SEMIHOSTING "${OPENCV_SEMIHOSTING}")
|
|
|