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.
13 lines
366 B
13 lines
366 B
if(WIN32) |
|
try_compile(__VALID_DIRECTML |
|
"${OpenCV_BINARY_DIR}" |
|
"${OpenCV_SOURCE_DIR}/cmake/checks/directml.cpp" |
|
LINK_LIBRARIES d3d12 dxcore directml |
|
OUTPUT_VARIABLE TRY_OUT |
|
) |
|
if(NOT __VALID_DIRECTML) |
|
message(STATUS "No support for DirectML (d3d12, dxcore, directml libs are required)") |
|
return() |
|
endif() |
|
set(HAVE_DIRECTML ON) |
|
endif()
|
|
|