add part of opencv
This commit is contained in:
36
Lib/opencv/sources/modules/gapi/cmake/DownloadADE.cmake
Normal file
36
Lib/opencv/sources/modules/gapi/cmake/DownloadADE.cmake
Normal file
@@ -0,0 +1,36 @@
|
||||
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.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")
|
||||
Reference in New Issue
Block a user