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.
24 lines
562 B
24 lines
562 B
6 years ago
|
# --- PvApi ---
|
||
|
if(NOT HAVE_PVAPI)
|
||
|
if(X86_64)
|
||
|
set(arch x64)
|
||
|
else()
|
||
|
set(arch x86)
|
||
|
endif()
|
||
|
find_path(PVAPI_INCLUDE "PvApi.h"
|
||
|
PATHS "${PVAPI_ROOT}" ENV PVAPI_ROOT
|
||
|
PATH_SUFFIXES "inc-pc")
|
||
|
find_library(PVAPI_LIBRARY "PvAPI"
|
||
|
PATHS "${PVAPI_ROOT}" ENV PVAPI_ROOT
|
||
|
PATH_SUFFIXES "bin-pc/${arch}/${gcc}")
|
||
|
if(PVAPI_INCLUDE AND PVAPI_LIBRARY)
|
||
|
set(HAVE_PVAPI TRUE)
|
||
|
endif()
|
||
|
endif()
|
||
|
|
||
|
if(HAVE_PVAPI)
|
||
|
ocv_add_external_target(pvapi "${PVAPI_INCLUDE}" "${PVAPI_LIBRARY}" "HAVE_PVAPI")
|
||
|
endif()
|
||
|
|
||
|
set(HAVE_PVAPI ${HAVE_PVAPI} PARENT_SCOPE)
|