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
383 B
21 lines
383 B
// custom OpenCL headers are located in "CL" subfolder (3rdparty/include/...) |
|
#include <CL/cl.h> |
|
|
|
#ifndef _MSC_VER |
|
#ifdef CL_VERSION_1_2 |
|
#error OpenCL is valid |
|
#else |
|
#error OpenCL check failed |
|
#endif |
|
#else |
|
#ifdef CL_VERSION_1_2 |
|
#pragma message ("OpenCL is valid") |
|
#else |
|
#pragma message ("OpenCL check failed") |
|
#endif |
|
#endif |
|
|
|
int main(int /*argc*/, char** /*argv*/) |
|
{ |
|
return 0; |
|
}
|
|
|