We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cc58de commit d3de935Copy full SHA for d3de935
README.md
@@ -18,6 +18,17 @@ cmake --build build
18
cmake --install build # may need sudo
19
```
20
21
+There is also experimental support for FetchContent:
22
+
23
+```cmake
24
+include(FetchContent)
25
26
+FetchContent_Declare(pgvector GIT_REPOSITORY https://github.com/pgvector/pgvector-cpp.git GIT_TAG 9cc58de1aae171f26bf72b4196f17018d6488725)
27
+FetchContent_MakeAvailable(pgvector)
28
29
+target_link_libraries(app PRIVATE pgvector::pgvector)
30
+```
31
32
And follow the instructions for your database library:
33
34
- [libpqxx](#libpqxx)
0 commit comments