mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 03:30:34 +08:00
c6c651212c
- removed OpenCV_LIB_DIR* vars (they are broken and not required anymore) - OpenCVConfig.cmake doesn't contain ANDROID/CUDA code if there is no such support - removed OpenCV2_INCLUDE_DIRS_CONFIGCMAKE, merged into OpenCV_INCLUDE_DIRS_CONFIGCMAKE - fix hard-coded relative paths for OpenCV_INSTALL_PATH - removed OpenCV_TBB_ARCH - switch OpenCVConfig.cmake into 2-level mode for Android SDK
8 lines
245 B
CMake
8 lines
245 B
CMake
if(NOT TARGET ippicv)
|
|
add_library(ippicv STATIC IMPORTED)
|
|
set_target_properties(ippicv PROPERTIES
|
|
IMPORTED_LINK_INTERFACE_LIBRARIES ""
|
|
IMPORTED_LOCATION "${OpenCV_INSTALL_PATH}/@IPPICV_INSTALL_PATH_RELATIVE_CONFIGCMAKE@"
|
|
)
|
|
endif()
|