Skip to content

Commit

Permalink
fix signature in rapids_export() docs (#732)
Browse files Browse the repository at this point in the history
Reading through https://docs.rapids.ai/api/rapids-cmake/stable/command/rapids_export/, I noticed what looks like a typo... argument `COMPONENTS` is repeated in the signature of `rapids_export()`. I think that second one was supposed to be `COMPONENTS_EXPORT_SET`.

This fixes that.

Authors:
  - James Lamb (https://github.com/jameslamb)

Approvers:
  - Vyas Ramasubramani (https://github.com/vyasr)

URL: #732
  • Loading branch information
jameslamb authored Dec 16, 2024
1 parent 36e12b6 commit dcbd3ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rapids-cmake/export/export.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ calls to :cmake:command:`find_dependency`, or :cmake:command:`CPMFindPackage`.
rapids_export(BUILD example
EXPORT_SET example-targets
COMPONENTS A B
COMPONENTS A-export B-export
COMPONENTS_EXPORT_SET A-export B-export
)
This is needed so that :cmake:command:`rapids_export` can correctly
Expand Down

0 comments on commit dcbd3ad

Please sign in to comment.