mirror of
https://github.com/opencv/opencv.git
synced 2025-06-11 11:45:30 +08:00
8 lines
245 B
CMake
8 lines
245 B
CMake
if(NOT TARGET fastcv)
|
|
add_library(fastcv STATIC IMPORTED)
|
|
set_target_properties(fastcv PROPERTIES
|
|
IMPORTED_LINK_INTERFACE_LIBRARIES ""
|
|
IMPORTED_LOCATION "${OpenCV_INSTALL_PATH}/@FASTCV_INSTALL_PATH_RELATIVE_CONFIGCMAKE@"
|
|
)
|
|
endif()
|