mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
315 B
12 lines
315 B
6 years ago
|
if (ade_DIR)
|
||
|
# if ade_DIR is set, use ADE-supplied CMake script
|
||
|
# to set up variables to the prebuilt ADE
|
||
|
find_package(ade 0.1.0)
|
||
|
endif()
|
||
|
|
||
|
if(NOT TARGET ade)
|
||
|
# if ade_DIR is not set, try to use automatically
|
||
|
# downloaded one (if there any)
|
||
|
include("${CMAKE_CURRENT_LIST_DIR}/DownloadADE.cmake")
|
||
|
endif()
|