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.
15 lines
293 B
15 lines
293 B
11 years ago
|
if(WIN32)
|
||
|
try_compile(__VALID_DIRECTX
|
||
|
"${OpenCV_BINARY_DIR}"
|
||
|
"${OpenCV_SOURCE_DIR}/cmake/checks/directx.cpp"
|
||
|
OUTPUT_VARIABLE TRY_OUT
|
||
|
)
|
||
|
if(NOT __VALID_DIRECTX)
|
||
|
return()
|
||
|
endif()
|
||
|
set(HAVE_DIRECTX ON)
|
||
|
set(HAVE_D3D11 ON)
|
||
|
set(HAVE_D3D10 ON)
|
||
|
set(HAVE_D3D9 ON)
|
||
|
endif()
|