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.
21 lines
471 B
21 lines
471 B
# Main variables: |
|
# HAVE_VA for conditional compilation OpenCV with/without libva |
|
|
|
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()
|
|
|