-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow the build directory of rmm to be used for
find_package(rmm)
(#…
…698) This folds into the rework for libcudf to support export targets ( rapidsai/cudf#7107 ). Developers that are iterating on `rmm` and `cudf` should be able `cudf` against a local build of `rmm` without having to re-install `rmm` each time they change a rmm header. This MR supports this use-case by allowing `find_package(rmm)` to work with a `rmm` build directory. To verify this ( using rapidsai/cudf#7107 ) the following will make sure `cudf` detects your local `rmm` instead of fetching it via `CPM`. ``` cmake -S cudf/cpp -B cudf/cpp/cudf -DCMAKE_PREFIX_PATH=<rmm_build_dir> ``` Authors: - Robert Maynard (@robertmaynard) Approvers: - Paul Taylor (@trxcllnt) - Keith Kraus (@kkraus14) URL: #698
- Loading branch information
1 parent
2505c0c
commit 7b03ff2
Showing
3 changed files
with
42 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters