File tree 3 files changed +3
-0
lines changed
3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ set(PARALLEL_ENABLE_PLUGINS "${PARALLEL_ENABLE_PLUGINS_DEFAULT}" CACHE BOOL "All
27
27
# TODO building plugins with OpenCV is not supported yet
28
28
#set(PARALLEL_PLUGIN_LIST "" CACHE STRING "List of parallel backends to be compiled as plugins (tbb, openmp or special value 'all')")
29
29
#string(REPLACE "," ";" PARALLEL_PLUGIN_LIST "${PARALLEL_PLUGIN_LIST}") # support comma-separated list (,) too
30
+ #string(TOLOWER "${PARALLEL_PLUGIN_LIST}" PARALLEL_PLUGIN_LIST)
30
31
31
32
32
33
ocv_add_module(core
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ if(PROJECT_NAME STREQUAL "OpenCV")
8
8
mark_as_advanced (HIGHGUI_PLUGIN_LIST HIGHGUI_ENABLE_PLUGINS)
9
9
10
10
string (REPLACE "," ";" HIGHGUI_PLUGIN_LIST "${HIGHGUI_PLUGIN_LIST} " ) # support comma-separated list (,) too
11
+ string (TOLOWER "${HIGHGUI_PLUGIN_LIST} " HIGHGUI_PLUGIN_LIST)
11
12
if (NOT HIGHGUI_ENABLE_PLUGINS)
12
13
if (HIGHGUI_PLUGIN_LIST)
13
14
message (WARNING "HighGUI: plugins are disabled through HIGHGUI_ENABLE_PLUGINS, so HIGHGUI_PLUGIN_LIST='${HIGHGUI_PLUGIN_LIST} ' is ignored" )
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ set(VIDEOIO_ENABLE_PLUGINS "${VIDEOIO_ENABLE_PLUGINS_DEFAULT}" CACHE BOOL "Allow
8
8
mark_as_advanced (VIDEOIO_PLUGIN_LIST VIDEOIO_ENABLE_PLUGINS)
9
9
10
10
string (REPLACE "," ";" VIDEOIO_PLUGIN_LIST "${VIDEOIO_PLUGIN_LIST} " ) # support comma-separated list (,) too
11
+ string (TOLOWER "${VIDEOIO_PLUGIN_LIST} " VIDEOIO_PLUGIN_LIST)
11
12
if (NOT VIDEOIO_ENABLE_PLUGINS)
12
13
if (VIDEOIO_PLUGIN_LIST)
13
14
message (WARNING "VideoIO: plugins are disabled through VIDEOIO_ENABLE_PLUGINS, so VIDEOIO_PLUGIN_LIST='${VIDEOIO_PLUGIN_LIST} ' is ignored" )
You can’t perform that action at this time.
0 commit comments