Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make it easier to include rmm in other projects (#788)
Right now if we want to include RMM in other cmake projects using CPM, we'd have to do something like this: ```cmake CPMAddPackage( NAME rmm GIT_REPOSITORY https://github.com/rapidsai/rmm GIT_TAG 0cc1380 OPTIONS "BUILD_TESTS OFF" "BUILD_BENCHMARKS OFF" ) ``` With this change, it can be done using the short form: ```cmake CPMAddPackage("gh:rapidsai/rmm#0cc1380523d31b2f044ecc74b457b228f8aea0c8") ``` This is also the recommendation from `Modern CMake` (https://cliutils.gitlab.io/modern-cmake/chapters/testing.html). Authors: - Rong Ou (https://github.com/rongou) Approvers: - Robert Maynard (https://github.com/robertmaynard) - Keith Kraus (https://github.com/kkraus14) URL: #788
- Loading branch information