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.
22 lines
511 B
22 lines
511 B
# Output: |
|
# HAVE_VA - libva is available |
|
# HAVE_VA_INTEL - OpenCL/libva Intel interoperability extension is available |
|
|
|
if(UNIX AND NOT ANDROID) |
|
find_path( |
|
VA_INCLUDE_DIR |
|
NAMES va/va.h |
|
PATHS "/usr/include" |
|
PATH_SUFFIXES include |
|
DOC "Path to libva headers") |
|
endif() |
|
|
|
if(VA_INCLUDE_DIR) |
|
set(HAVE_VA TRUE) |
|
if(NOT DEFINED VA_LIBRARIES) |
|
set(VA_LIBRARIES "va" "va-drm") |
|
endif() |
|
else() |
|
set(HAVE_VA FALSE) |
|
message(WARNING "libva installation is not found.") |
|
endif()
|
|
|