This commit is contained in:
Andrey Kamaev
2012-02-03 19:18:35 +00:00
parent fdc1e87ddf
commit dfb161e9c9
2 changed files with 9 additions and 1 deletions

View File

@@ -299,6 +299,12 @@ macro(ocv_glob_modules)
if(m MATCHES "^opencv_")
string(REGEX REPLACE "^opencv_" "" __shortname "${m}")
add_subdirectory("${OPENCV_MODULE_${m}_LOCATION}" "${CMAKE_CURRENT_BINARY_DIR}/${__shortname}")
#workaround for link_directories inheritance
get_directory_property(__lnkfix DIRECTORY "${OPENCV_MODULE_${m}_LOCATION}" LINK_DIRECTORIES)
if(__lnkfix)
link_directories(${__lnkfix})
endif()
endif()
endforeach()
unset(__shortname)