Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 1.06 KB

File metadata and controls

28 lines (18 loc) · 1.06 KB

CMake support

:py:mod:`dpctl` comes with the configuration file :file:`dpctl-config.cmake` which is installed on the standard search path CMake uses to search for packages.

To build your extension that leverages :py:mod:`dpctl`, include the following line in your CMake script:

find_package("Dpctl" REQUIRED)

The "Dpctl" package exports the following variables:

Dpctl_INCLUDE_DIR Location of headers for using :py:mod:`dpctl` in extensions

An example of "CMakeLists.txt" file for building an extension could be found in examples/pybind11 folder in the project repository, or in sample-data-parallel-extensions repository.