Lines Matching +full:cmake +full:- +full:version
7 https://github.com/KhronosGroup/OpenCL-Headers
14 …ation, it is part of the [OpenCL SDK](https://github.com/KhronosGroup/OpenCL-SDK). If looking for …
18 - The OpenCL Headers CMake package support uses CMake for its build system.
19 If CMake is not provided by your build system or OS package manager, please consult the [CMake webs…
22 While the headers may just be copied as-is, this repository also contains a
23 CMake script with an install rule to allow for packaging the headers.
26 cmake -S . -B build -DCMAKE_INSTALL_PREFIX=/chosen/install/prefix
27 cmake --build build --target install
32 Example CMake invocation
35 cmake -D CMAKE_PREFIX_PATH=/chosen/install/prefix /path/to/opencl/app
40 ```cmake
41 cmake_minimum_required(VERSION 3.0)
42 cmake_policy(VERSION 3.0...3.18.4)
53 API headers, where version-specific API headers either existed in separate
56 ## Compiling for a Specific OpenCL Version
59 OpenCL version (currently OpenCL 3.0). To use these API headers to target
60 a different OpenCL version, an application may `#define` the preprocessor
63 the OpenCL API version.
104 older version of the OpenCL API headers can seamlessly update to a newer version
130 ---