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.
17 lines
432 B
17 lines
432 B
OCV_OPTION(WITH_ADE "Enable ADE framework (required for Graph API module)" ON) |
|
|
|
if(NOT WITH_ADE) |
|
return() |
|
endif() |
|
|
|
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()
|
|
|