mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 01:51:39 +08:00
3532a7cf3c
* [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
9 lines
214 B
CMake
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})
|