|
|
|
@ -707,7 +707,7 @@ macro(__ocv_parse_test_sources tests_type) |
|
|
|
|
set(__file_group_sources "") |
|
|
|
|
elseif(arg STREQUAL "DEPENDS_ON") |
|
|
|
|
set(__currentvar "OPENCV_TEST_${the_module}_DEPS") |
|
|
|
|
elseif("${__currentvar}" STREQUAL "__file_group_sources" AND NOT __file_group_name) |
|
|
|
|
elseif(" ${__currentvar}" STREQUAL " __file_group_sources" AND NOT __file_group_name) # spaces to avoid CMP0054 |
|
|
|
|
set(__file_group_name "${arg}") |
|
|
|
|
else() |
|
|
|
|
list(APPEND ${__currentvar} "${arg}") |
|
|
|
@ -925,7 +925,7 @@ macro(__ocv_track_module_link_dependencies the_module optkind) |
|
|
|
|
if(__resolved_deps MATCHES "(^|;)${__rdep}(;|$)") |
|
|
|
|
#all dependencies of this module are already resolved |
|
|
|
|
list(APPEND ${the_module}_MODULE_DEPS_${optkind} "${__dep}") |
|
|
|
|
else() |
|
|
|
|
elseif(TARGET ${__dep}) |
|
|
|
|
get_target_property(__module_type ${__dep} TYPE) |
|
|
|
|
if(__module_type STREQUAL "STATIC_LIBRARY") |
|
|
|
|
if(NOT DEFINED ${__dep}_LIB_DEPENDS_${optkind}) |
|
|
|
@ -933,9 +933,9 @@ macro(__ocv_track_module_link_dependencies the_module optkind) |
|
|
|
|
endif() |
|
|
|
|
list(INSERT __mod_depends 0 ${${__dep}_LIB_DEPENDS_${optkind}} ${__dep}) |
|
|
|
|
list(APPEND __resolved_deps "${__dep}") |
|
|
|
|
elseif(NOT __module_type) |
|
|
|
|
list(APPEND ${the_module}_EXTRA_DEPS_${optkind} "${__dep}") |
|
|
|
|
endif() |
|
|
|
|
else() |
|
|
|
|
list(APPEND ${the_module}_EXTRA_DEPS_${optkind} "${__dep}") |
|
|
|
|
endif() |
|
|
|
|
#else() |
|
|
|
|
# get_target_property(__dep_location "${__dep}" LOCATION) |
|
|
|
|