-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed compilation to get the tests working again.
Distances are now specified via std::function objects in the Options.
- Loading branch information
Showing
6 changed files
with
458 additions
and
66 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
include(FetchContent) | ||
|
||
FetchContent_Declare( | ||
knncolle | ||
GIT_REPOSITORY https://github.com/knncolle/knncolle | ||
GIT_TAG master # ^2.0.0 | ||
) | ||
|
||
FetchContent_Declare( | ||
hnswlib | ||
GIT_REPOSITORY https://github.com/nmslib/hnswlib | ||
GIT_TAG master # ^0.8.0 | ||
) | ||
|
||
FetchContent_MakeAvailable(knncolle) | ||
FetchContent_MakeAvailable(hnswlib) |
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
Oops, something went wrong.