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.
31 lines
1.1 KiB
31 lines
1.1 KiB
set(ade_src_dir "${OpenCV_BINARY_DIR}/3rdparty/ade") |
|
set(ade_filename "v0.1.1f.zip") |
|
set(ade_subdir "ade-0.1.1f") |
|
set(ade_md5 "b624b995ec9c439cbc2e9e6ee940d3a2") |
|
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")
|
|
|