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.
37 lines
1.2 KiB
37 lines
1.2 KiB
6 years ago
|
if(ANDROID)
|
||
|
# FIXME: Android build will be enabled separately
|
||
|
return()
|
||
|
endif()
|
||
|
|
||
|
set(ade_src_dir "${OpenCV_BINARY_DIR}/3rdparty/ade")
|
||
|
set(ade_filename "v0.1.1c.zip")
|
||
|
set(ade_subdir "ade-0.1.1c")
|
||
|
set(ade_md5 "db7e6a260229ee562a1b2857df473af8")
|
||
|
ocv_download(FILENAME ${ade_filename}
|
||
|
HASH ${ade_md5}
|
||
|
URL
|
||
|
"${OPENCV_ADE_URL}"
|
||
|
"$ENV{OPENCV_ADE_URL}"
|
||
|
"https://github.com/opencv/ade/archive/"
|
||
|
DESTINATION_DIR ${ade_src_dir}
|
||
|
ID ADE
|
||
|
STATUS res
|
||
|
UNPACK RELATIVE_URL)
|
||
|
|
||
|
if (NOT res)
|
||
|
return()
|
||
|
endif()
|
||
|
|
||
|
set(ADE_root "${ade_src_dir}/${ade_subdir}/sources/ade")
|
||
|
file(GLOB_RECURSE ADE_sources "${ADE_root}/source/*.cpp")
|
||
|
file(GLOB_RECURSE ADE_include "${ADE_root}/include/ade/*.hpp")
|
||
|
add_library(ade STATIC ${ADE_include} ${ADE_sources})
|
||
|
target_include_directories(ade PUBLIC $<BUILD_INTERFACE:${ADE_root}/include>)
|
||
|
set_target_properties(ade PROPERTIES POSITION_INDEPENDENT_CODE True)
|
||
|
|
||
|
if(NOT BUILD_SHARED_LIBS)
|
||
|
ocv_install_target(ade EXPORT OpenCVModules ARCHIVE DESTINATION ${OPENCV_3P_LIB_INSTALL_PATH} COMPONENT dev)
|
||
|
endif()
|
||
|
|
||
|
ocv_install_3rdparty_licenses(ade "${ade_src_dir}/${ade_subdir}/LICENSE")
|