You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The FindDpctl.cmake is not installed as part of the conda package nor do we currently provide a DpctlConfig.cmake file. The result is that dpctl cannot be found by external cmake projects.
CMake Error at CMakeLists.txt:7 (find_package):
By not providing "FindDpctl.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "Dpctl", but
CMake did not find one.
Could not find a package configuration file provided by "Dpctl" with any of
the following names:
DpctlConfig.cmake
dpctl-config.cmake
Add the installation prefix of "Dpctl" to CMAKE_PREFIX_PATH or set
"Dpctl_DIR" to a directory containing one of the above files. If "Dpctl"
provides a separate development package or SDK, be sure it has been
installed.
The text was updated successfully, but these errors were encountered:
With #853 all one needs to do python setup.py develop -- -DPDCTL_MODULE_PATH=$(python -m dpctl --cmakedir) to build external package which uses dpctl via find_package(dpctl) in their CMakeLists.txt.
The
FindDpctl.cmake
is not installed as part of the conda package nor do we currently provide aDpctlConfig.cmake
file. The result is that dpctl cannot be found by external cmake projects.The text was updated successfully, but these errors were encountered: