vcpkg/ports/cudnn/vcpkg-cmake-wrapper.cmake
Stefano Sinigardi 3532a7cf3c [cudnn] add port and enable it in darknet (#7536)
* [cudnn] add port and enable it in darknet
* [OpenCV4] fix ffmpeg feature on uwp
* [darknet] enable integration with cuda/cudnn also with opencv3
* [darknet] update to latest revision
2019-09-24 12:58:38 -07:00

9 lines
214 B
CMake

set(CUDNN_PREV_MODULE_PATH ${CMAKE_MODULE_PATH})
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR})
if(NOT CUDNN_LIBRARIES)
_find_package(${ARGS})
endif()
set(CMAKE_MODULE_PATH ${CUDNN_PREV_MODULE_PATH})