Skip to content

Commit

Permalink
Specify correct global targets names to raft_export (#1054)
Browse files Browse the repository at this point in the history
The raft_nn and raft_distance targets are exported with the names nn and distance, therefore those are the names that need to be marked as GLOBAL.

Authors:
  - Robert Maynard (https://github.com/robertmaynard)

Approvers:
  - Corey J. Nolet (https://github.com/cjnolet)

URL: #1054
  • Loading branch information
robertmaynard authored Nov 30, 2022
1 parent 63a1d94 commit 0b3ef04
Showing 1 changed file with 2 additions and 19 deletions.
21 changes: 2 additions & 19 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -663,25 +663,8 @@ raft_export(
# ##################################################################################################
# * build export -------------------------------------------------------------
raft_export(
BUILD
raft
EXPORT_SET
raft-exports
COMPONENTS
nn
distance
distributed
GLOBAL_TARGETS
raft
raft_distance
distributed
raft_nn
DOCUMENTATION
doc_string
NAMESPACE
raft::
FINAL_CODE_BLOCK
code_string
BUILD raft EXPORT_SET raft-exports COMPONENTS nn distance distributed GLOBAL_TARGETS raft
distance distributed nn DOCUMENTATION doc_string NAMESPACE raft:: FINAL_CODE_BLOCK code_string
)

# ##################################################################################################
Expand Down

0 comments on commit 0b3ef04

Please sign in to comment.