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.
32 lines
867 B
32 lines
867 B
# Main variables: |
|
# VA_INTEL_IOCL_INCLUDE_DIR to use VA_INTEL |
|
# HAVE_VA_INTEL for conditional compilation OpenCV with/without VA_INTEL |
|
|
|
# VA_INTEL_IOCL_ROOT - root of Intel OCL installation |
|
|
|
if(UNIX AND NOT ANDROID) |
|
if($ENV{VA_INTEL_IOCL_ROOT}) |
|
set(VA_INTEL_IOCL_ROOT $ENV{VA_INTEL_IOCL_ROOT}) |
|
else() |
|
set(VA_INTEL_IOCL_ROOT "/opt/intel/opencl") |
|
endif() |
|
|
|
find_path( |
|
VA_INTEL_IOCL_INCLUDE_DIR |
|
NAMES CL/va_ext.h |
|
PATHS ${VA_INTEL_IOCL_ROOT} |
|
PATH_SUFFIXES include |
|
DOC "Path to Intel OpenCL headers") |
|
endif() |
|
|
|
if(VA_INTEL_IOCL_INCLUDE_DIR) |
|
set(HAVE_VA_INTEL TRUE) |
|
if(NOT DEFINED VA_INTEL_LIBRARIES) |
|
set(VA_INTEL_LIBRARIES "va" "va-drm") |
|
endif() |
|
else() |
|
set(HAVE_VA_INTEL FALSE) |
|
message(WARNING "Intel OpenCL installation is not found.") |
|
endif() |
|
|
|
mark_as_advanced(FORCE VA_INTEL_IOCL_INCLUDE_DIR)
|
|
|