zvec 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +20 -10
- data/ext/CMakeLists.txt +133 -91
- data/ext/build/macos-debug/CMakeCache.txt +135 -2
- data/ext/build/macos-debug/CMakeFiles/InstallScripts.json +1 -66
- data/ext/build/macos-debug/CMakeFiles/TargetDirectories.txt +0 -844
- data/ext/build/macos-debug/compile_commands.json +8 -8414
- data/lib/zvec/collection.rb +5 -5
- data/lib/zvec/doc.rb +5 -1
- data/lib/zvec/version.rb +3 -1
- data/lib/zvec.rb +18 -7
- metadata +9 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f479270e489b596a21de3ed401f4ac8bd6d4e83c13febe4390e6e4a11615f00e
|
|
4
|
+
data.tar.gz: '06301395bfd0027f1e9c32520feddd0f55233fabb238a55e9aa917c40ea5aa87'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfc344481103cb05fe66e5cee4f53c2e8396018db58f865d07abba19b9ad3fe8df368ec6622dea608c5b8dd423bb28a8fdd2643aca26a326fc7abd97acc548b6
|
|
7
|
+
data.tar.gz: 9573b88d42ec83df5ecc55c0f6fdd4b6fc6c347514e571f3ad3dd2fb5d28ada219a22bbfaf7d1b753a17a658e73ae1b7dfa64572f6586178bbb6253cec0fd8c1
|
data/README.md
CHANGED
|
@@ -29,36 +29,46 @@
|
|
|
29
29
|
Ruby bindings for Alibaba's [zvec](https://github.com/alibaba/zvec) C++ vector database library. Store, index, and query high-dimensional vectors alongside scalar metadata — all from Ruby. The native extension uses [Rice](https://github.com/ruby-rice/rice) (v4.11) for C++/Ruby interop and CMake for building. The zvec C++ source is included as a git submodule.
|
|
30
30
|
|
|
31
31
|
> [!CAUTION]
|
|
32
|
-
>
|
|
32
|
+
> Without the Homebrew formula, `gem install zvec` compiles the entire zvec C++ dependency tree from source (~10 minutes). Pre-building with Homebrew reduces this to ~10 seconds. The source build may not work on all platforms.
|
|
33
33
|
|
|
34
34
|
## Prerequisites
|
|
35
35
|
|
|
36
36
|
- Ruby >= 3.2.0
|
|
37
37
|
- CMake >= 3.26
|
|
38
38
|
- A C++17 compiler (Clang or GCC)
|
|
39
|
-
- ICU4C: `brew install icu4c@78` (macOS
|
|
39
|
+
- ICU4C: `brew install icu4c@78` (macOS)
|
|
40
40
|
|
|
41
41
|
## Installation
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
### Recommended: Pre-build with Homebrew (fast)
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
Pre-building the zvec C++ library avoids a lengthy source compilation during gem install:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
brew tap madbomber/zvec https://github.com/MadBomber/zvec-ruby.git
|
|
49
|
+
brew install madbomber/zvec/zvec
|
|
50
|
+
gem install zvec # ~10 seconds
|
|
47
51
|
```
|
|
48
52
|
|
|
49
|
-
|
|
53
|
+
### Alternative: Build from source (slow)
|
|
54
|
+
|
|
55
|
+
Without Homebrew, the gem fetches and compiles the full C++ dependency tree (~10 minutes):
|
|
50
56
|
|
|
51
57
|
```bash
|
|
52
|
-
|
|
53
|
-
cd ext && cmake --preset macos-release && cmake --build build/macos-release && cd ..
|
|
58
|
+
gem install zvec
|
|
54
59
|
```
|
|
55
60
|
|
|
56
|
-
|
|
61
|
+
### Development (from source checkout)
|
|
57
62
|
|
|
58
63
|
```bash
|
|
59
|
-
|
|
64
|
+
git clone --recurse-submodules https://github.com/MadBomber/zvec-ruby.git
|
|
65
|
+
cd zvec-ruby
|
|
66
|
+
bundle install
|
|
67
|
+
cd ext && cmake --preset macos-release && cmake --build build/macos-release && cd ..
|
|
60
68
|
```
|
|
61
69
|
|
|
70
|
+
For debug builds use the `macos-debug` preset instead.
|
|
71
|
+
|
|
62
72
|
## Quick Start
|
|
63
73
|
|
|
64
74
|
```ruby
|
data/ext/CMakeLists.txt
CHANGED
|
@@ -34,79 +34,105 @@ FetchContent_MakeAvailable(rice)
|
|
|
34
34
|
list(PREPEND CMAKE_MODULE_PATH "${rice_SOURCE_DIR}")
|
|
35
35
|
find_package(Ruby REQUIRED COMPONENTS Development)
|
|
36
36
|
|
|
37
|
-
#
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
# ---
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
37
|
+
# ============================================================================
|
|
38
|
+
# Three-tier zvec resolution:
|
|
39
|
+
# 1. Pre-installed library (e.g., brew install zvec) — fast path
|
|
40
|
+
# 2. Local git submodule at vendor/zvec — development path
|
|
41
|
+
# 3. FetchContent from GitHub — fallback for gem install without Homebrew
|
|
42
|
+
# ============================================================================
|
|
43
|
+
|
|
44
|
+
# --- Strategy 1: Find pre-installed zvec (e.g., from Homebrew) ---
|
|
45
|
+
find_library(ZVEC_LIBRARY zvec
|
|
46
|
+
HINTS /opt/homebrew/opt/zvec/lib
|
|
47
|
+
/usr/local/opt/zvec/lib
|
|
48
|
+
ENV ZVEC_DIR
|
|
49
|
+
)
|
|
50
|
+
find_path(ZVEC_INCLUDE_DIR zvec/db/collection.h
|
|
51
|
+
HINTS /opt/homebrew/opt/zvec/include
|
|
52
|
+
/usr/local/opt/zvec/include
|
|
53
|
+
ENV ZVEC_DIR
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
if(ZVEC_LIBRARY AND ZVEC_INCLUDE_DIR)
|
|
57
|
+
message(STATUS "Found pre-installed zvec: ${ZVEC_LIBRARY}")
|
|
58
|
+
message(STATUS " includes: ${ZVEC_INCLUDE_DIR}")
|
|
59
|
+
set(ZVEC_PREBUILT TRUE)
|
|
51
60
|
else()
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
set(ZVEC_PREBUILT FALSE)
|
|
62
|
+
|
|
63
|
+
# Disable parts of zvec we don't need (must be set before add_subdirectory)
|
|
64
|
+
set(BUILD_PYTHON_BINDINGS OFF CACHE BOOL "" FORCE)
|
|
65
|
+
set(BUILD_TOOLS OFF CACHE BOOL "" FORCE)
|
|
66
|
+
set(BUILD_TESTING OFF CACHE BOOL "" FORCE)
|
|
67
|
+
set(BENCHMARK_ENABLE_TESTING OFF CACHE BOOL "" FORCE)
|
|
68
|
+
set(BENCHMARK_ENABLE_INSTALL OFF CACHE BOOL "" FORCE)
|
|
69
|
+
|
|
70
|
+
# --- Strategy 2: Local submodule (development) ---
|
|
71
|
+
set(_ZVEC_LOCAL "${CMAKE_CURRENT_SOURCE_DIR}/../vendor/zvec")
|
|
72
|
+
|
|
73
|
+
if(EXISTS "${_ZVEC_LOCAL}/CMakeLists.txt")
|
|
74
|
+
message(STATUS "Using local zvec from ${_ZVEC_LOCAL}")
|
|
75
|
+
set(ZVEC_ROOT "${_ZVEC_LOCAL}")
|
|
76
|
+
else()
|
|
77
|
+
# --- Strategy 3: FetchContent from GitHub ---
|
|
78
|
+
message(STATUS "vendor/zvec not found — fetching from GitHub")
|
|
79
|
+
FetchContent_Declare(
|
|
80
|
+
zvec_src
|
|
81
|
+
GIT_REPOSITORY https://github.com/alibaba/zvec.git
|
|
82
|
+
GIT_TAG 1d5aeeed1df6e104443edf23891798f1ff0a8bf7
|
|
83
|
+
GIT_SHALLOW FALSE
|
|
84
|
+
GIT_SUBMODULES_RECURSE TRUE
|
|
85
|
+
)
|
|
86
|
+
FetchContent_GetProperties(zvec_src)
|
|
87
|
+
if(NOT zvec_src_POPULATED)
|
|
88
|
+
FetchContent_Populate(zvec_src)
|
|
89
|
+
endif()
|
|
90
|
+
set(ZVEC_ROOT "${zvec_src_SOURCE_DIR}")
|
|
91
|
+
|
|
92
|
+
# zvec's subdirectory CMakeLists expect cmake/ relative to CMAKE_SOURCE_DIR
|
|
93
|
+
# (in development, ext/cmake is a symlink to ../vendor/zvec/cmake)
|
|
94
|
+
if(NOT EXISTS "${CMAKE_SOURCE_DIR}/cmake/bazel.cmake")
|
|
95
|
+
file(COPY "${ZVEC_ROOT}/cmake/" DESTINATION "${CMAKE_SOURCE_DIR}/cmake/")
|
|
96
|
+
endif()
|
|
64
97
|
endif()
|
|
65
|
-
set(ZVEC_ROOT "${zvec_src_SOURCE_DIR}")
|
|
66
98
|
|
|
67
|
-
# zvec
|
|
68
|
-
|
|
69
|
-
if(NOT EXISTS "${CMAKE_SOURCE_DIR}/cmake/bazel.cmake")
|
|
70
|
-
file(COPY "${ZVEC_ROOT}/cmake/" DESTINATION "${CMAKE_SOURCE_DIR}/cmake/")
|
|
71
|
-
endif()
|
|
72
|
-
endif()
|
|
99
|
+
# zvec uses PROJECT_ROOT_DIR internally
|
|
100
|
+
set(PROJECT_ROOT_DIR "${ZVEC_ROOT}" CACHE PATH "" FORCE)
|
|
73
101
|
|
|
74
|
-
#
|
|
75
|
-
|
|
102
|
+
# Forward CMAKE_PREFIX_PATH to Arrow's ExternalProject_Add via CMAKE_CACHE_ARGS
|
|
103
|
+
# (Arrow's CONFIGURE_COMMAND interpolates ${CMAKE_CACHE_ARGS} but it's unset by default)
|
|
104
|
+
if(CMAKE_PREFIX_PATH)
|
|
105
|
+
set(CMAKE_CACHE_ARGS "-DCMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}")
|
|
106
|
+
endif()
|
|
76
107
|
|
|
77
|
-
#
|
|
78
|
-
#
|
|
79
|
-
|
|
80
|
-
set(
|
|
81
|
-
|
|
108
|
+
# --- Fix antlr4 CMakeLists.txt for CMake 4.x compatibility ---
|
|
109
|
+
# zvec's own patch (antlr4.patch) runs first via apply_patch_once(), but it doesn't
|
|
110
|
+
# fix the OLD policies that CMake 4.x removed. We apply additional fixups here.
|
|
111
|
+
set(_antlr4_cmake "${ZVEC_ROOT}/thirdparty/antlr/antlr4/runtime/Cpp/CMakeLists.txt")
|
|
112
|
+
set(_antlr4_cmake4_mark "${ZVEC_ROOT}/thirdparty/antlr/antlr4/.cmake4_compat_patched")
|
|
113
|
+
if(NOT EXISTS "${_antlr4_cmake4_mark}" AND EXISTS "${_antlr4_cmake}")
|
|
114
|
+
file(READ "${_antlr4_cmake}" _antlr4_content)
|
|
115
|
+
# Fix cmake_minimum_required to 3.5
|
|
116
|
+
string(REPLACE "cmake_minimum_required (VERSION 2.8)" "cmake_minimum_required (VERSION 3.5)" _antlr4_content "${_antlr4_content}")
|
|
117
|
+
# Remove OLD policy settings (CMake 4.x removed these)
|
|
118
|
+
string(REPLACE " CMAKE_POLICY(SET CMP0054 OLD)\n CMAKE_POLICY(SET CMP0045 OLD)\n CMAKE_POLICY(SET CMP0042 OLD)\n" "" _antlr4_content "${_antlr4_content}")
|
|
119
|
+
string(REPLACE " CMAKE_POLICY(SET CMP0059 OLD)\n CMAKE_POLICY(SET CMP0054 OLD)\n" "" _antlr4_content "${_antlr4_content}")
|
|
120
|
+
# Fix old-style endif() with arguments
|
|
121
|
+
string(REPLACE "endif(NOT CMAKE_BUILD_TYPE)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
122
|
+
string(REPLACE "endif(NOT WITH_DEMO)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
123
|
+
string(REPLACE "endif(WITH_DEMO)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
124
|
+
string(REPLACE "endif(WIN32)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
125
|
+
string(REPLACE "if(NOT ANTLR4_CMAKE_DIR)" "if(NOT DEFINED ANTLR4_CMAKE_DIR OR NOT ANTLR4_CMAKE_DIR)" _antlr4_content "${_antlr4_content}")
|
|
126
|
+
string(REPLACE "endif(NOT ANTLR4_CMAKE_DIR)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
127
|
+
string(REPLACE "endif(ANTLR4_INSTALL)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
128
|
+
file(WRITE "${_antlr4_cmake}" "${_antlr4_content}")
|
|
129
|
+
file(WRITE "${_antlr4_cmake4_mark}" "patched")
|
|
130
|
+
message(STATUS "Applied CMake 4.x compatibility fixes to antlr4")
|
|
131
|
+
endif()
|
|
82
132
|
|
|
83
|
-
|
|
84
|
-
# zvec's own patch (antlr4.patch) runs first via apply_patch_once(), but it doesn't
|
|
85
|
-
# fix the OLD policies that CMake 4.x removed. We apply additional fixups here.
|
|
86
|
-
set(_antlr4_cmake "${ZVEC_ROOT}/thirdparty/antlr/antlr4/runtime/Cpp/CMakeLists.txt")
|
|
87
|
-
set(_antlr4_cmake4_mark "${ZVEC_ROOT}/thirdparty/antlr/antlr4/.cmake4_compat_patched")
|
|
88
|
-
if(NOT EXISTS "${_antlr4_cmake4_mark}" AND EXISTS "${_antlr4_cmake}")
|
|
89
|
-
file(READ "${_antlr4_cmake}" _antlr4_content)
|
|
90
|
-
# Fix cmake_minimum_required to 3.5
|
|
91
|
-
string(REPLACE "cmake_minimum_required (VERSION 2.8)" "cmake_minimum_required (VERSION 3.5)" _antlr4_content "${_antlr4_content}")
|
|
92
|
-
# Remove OLD policy settings (CMake 4.x removed these)
|
|
93
|
-
string(REPLACE " CMAKE_POLICY(SET CMP0054 OLD)\n CMAKE_POLICY(SET CMP0045 OLD)\n CMAKE_POLICY(SET CMP0042 OLD)\n" "" _antlr4_content "${_antlr4_content}")
|
|
94
|
-
string(REPLACE " CMAKE_POLICY(SET CMP0059 OLD)\n CMAKE_POLICY(SET CMP0054 OLD)\n" "" _antlr4_content "${_antlr4_content}")
|
|
95
|
-
# Fix old-style endif() with arguments
|
|
96
|
-
string(REPLACE "endif(NOT CMAKE_BUILD_TYPE)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
97
|
-
string(REPLACE "endif(NOT WITH_DEMO)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
98
|
-
string(REPLACE "endif(WITH_DEMO)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
99
|
-
string(REPLACE "endif(WIN32)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
100
|
-
string(REPLACE "if(NOT ANTLR4_CMAKE_DIR)" "if(NOT DEFINED ANTLR4_CMAKE_DIR OR NOT ANTLR4_CMAKE_DIR)" _antlr4_content "${_antlr4_content}")
|
|
101
|
-
string(REPLACE "endif(NOT ANTLR4_CMAKE_DIR)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
102
|
-
string(REPLACE "endif(ANTLR4_INSTALL)" "endif()" _antlr4_content "${_antlr4_content}")
|
|
103
|
-
file(WRITE "${_antlr4_cmake}" "${_antlr4_content}")
|
|
104
|
-
file(WRITE "${_antlr4_cmake4_mark}" "patched")
|
|
105
|
-
message(STATUS "Applied CMake 4.x compatibility fixes to antlr4")
|
|
133
|
+
add_subdirectory("${ZVEC_ROOT}" "${CMAKE_CURRENT_BINARY_DIR}/zvec" EXCLUDE_FROM_ALL)
|
|
106
134
|
endif()
|
|
107
135
|
|
|
108
|
-
add_subdirectory("${ZVEC_ROOT}" "${CMAKE_CURRENT_BINARY_DIR}/zvec" EXCLUDE_FROM_ALL)
|
|
109
|
-
|
|
110
136
|
# --- Ruby extension module ---
|
|
111
137
|
add_library(zvec_ext MODULE
|
|
112
138
|
zvec/zvec_ext.cpp
|
|
@@ -119,38 +145,54 @@ add_library(zvec_ext MODULE
|
|
|
119
145
|
zvec/zvec_config.cpp
|
|
120
146
|
)
|
|
121
147
|
|
|
122
|
-
target_include_directories(zvec_ext PRIVATE
|
|
123
|
-
"${rice_SOURCE_DIR}/include"
|
|
124
|
-
"${ZVEC_ROOT}/src/include"
|
|
125
|
-
"${ZVEC_ROOT}/src"
|
|
126
|
-
)
|
|
127
|
-
|
|
128
148
|
# Link Rice (header-only) and Ruby
|
|
129
149
|
target_link_libraries(zvec_ext PRIVATE Rice::Rice)
|
|
130
150
|
target_link_libraries(zvec_ext PRIVATE Ruby::Module)
|
|
131
151
|
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
)
|
|
152
|
+
if(ZVEC_PREBUILT)
|
|
153
|
+
# --- Fast path: link against pre-installed fat static archive ---
|
|
154
|
+
target_include_directories(zvec_ext PRIVATE
|
|
155
|
+
"${rice_SOURCE_DIR}/include"
|
|
156
|
+
"${ZVEC_INCLUDE_DIR}"
|
|
157
|
+
)
|
|
158
|
+
target_link_libraries(zvec_ext PRIVATE -Wl,-force_load,${ZVEC_LIBRARY})
|
|
159
|
+
|
|
160
|
+
# ICU4C is required at runtime (Arrow uses it for Unicode support)
|
|
161
|
+
find_package(ICU COMPONENTS uc data i18n)
|
|
162
|
+
if(ICU_FOUND)
|
|
163
|
+
target_link_libraries(zvec_ext PRIVATE ICU::uc ICU::data ICU::i18n)
|
|
164
|
+
endif()
|
|
165
|
+
else()
|
|
166
|
+
# --- Source build: link against individual zvec targets ---
|
|
167
|
+
target_include_directories(zvec_ext PRIVATE
|
|
168
|
+
"${rice_SOURCE_DIR}/include"
|
|
169
|
+
"${ZVEC_ROOT}/src/include"
|
|
170
|
+
"${ZVEC_ROOT}/src"
|
|
171
|
+
)
|
|
145
172
|
|
|
146
|
-
#
|
|
147
|
-
|
|
173
|
+
# Algorithm libraries that need force-loading for self-registration
|
|
174
|
+
set(ZVEC_ALGO_LIBS
|
|
175
|
+
core_knn_flat_static
|
|
176
|
+
core_knn_flat_sparse_static
|
|
177
|
+
core_knn_hnsw_static
|
|
178
|
+
core_knn_hnsw_sparse_static
|
|
179
|
+
core_knn_ivf_static
|
|
180
|
+
core_knn_cluster_static
|
|
181
|
+
core_mix_reducer_static
|
|
182
|
+
core_metric_static
|
|
183
|
+
core_utility_static
|
|
184
|
+
core_quantizer_static
|
|
185
|
+
)
|
|
148
186
|
|
|
149
|
-
#
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
187
|
+
# Explicit dependency so EXCLUDE_FROM_ALL targets get built
|
|
188
|
+
add_dependencies(zvec_ext ${ZVEC_ALGO_LIBS} zvec_db)
|
|
189
|
+
|
|
190
|
+
# Force-link zvec algorithm libraries (macOS) — required for self-registering algorithms
|
|
191
|
+
foreach(lib ${ZVEC_ALGO_LIBS})
|
|
192
|
+
target_link_libraries(zvec_ext PRIVATE -Wl,-force_load,$<TARGET_FILE:${lib}>)
|
|
193
|
+
endforeach()
|
|
194
|
+
target_link_libraries(zvec_ext PRIVATE zvec_db)
|
|
195
|
+
endif()
|
|
154
196
|
|
|
155
197
|
# Output directory: use CMAKE_LIBRARY_OUTPUT_DIRECTORY if set by RubyGems,
|
|
156
198
|
# otherwise default to the local lib/ directory (development builds)
|
|
@@ -22,7 +22,7 @@ BENCHMARK_ENABLE_INSTALL:BOOL=OFF
|
|
|
22
22
|
BENCHMARK_ENABLE_TESTING:BOOL=OFF
|
|
23
23
|
|
|
24
24
|
//the time we first built rocksdb
|
|
25
|
-
BUILD_DATE:STRING=2026-02-27
|
|
25
|
+
BUILD_DATE:STRING=2026-02-27 07:18:37
|
|
26
26
|
|
|
27
27
|
//Builds the googlemock subproject
|
|
28
28
|
BUILD_GMOCK:BOOL=ON
|
|
@@ -548,6 +548,81 @@ GTest_DIR:PATH=GTest_DIR-NOTFOUND
|
|
|
548
548
|
|
|
549
549
|
HAVE_LIB_GFLAGS:BOOL=TRUE
|
|
550
550
|
|
|
551
|
+
//ICU data library (debug)
|
|
552
|
+
ICU_DATA_LIBRARY_DEBUG:FILEPATH=ICU_DATA_LIBRARY_DEBUG-NOTFOUND
|
|
553
|
+
|
|
554
|
+
//ICU data library (release)
|
|
555
|
+
ICU_DATA_LIBRARY_RELEASE:FILEPATH=/opt/homebrew/opt/icu4c@78/lib/libicudata.dylib
|
|
556
|
+
|
|
557
|
+
//ICU derb executable
|
|
558
|
+
ICU_DERB_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/bin/derb
|
|
559
|
+
|
|
560
|
+
//ICU genbrk executable
|
|
561
|
+
ICU_GENBRK_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/bin/genbrk
|
|
562
|
+
|
|
563
|
+
//ICU genccode executable
|
|
564
|
+
ICU_GENCCODE_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/sbin/genccode
|
|
565
|
+
|
|
566
|
+
//ICU gencfu executable
|
|
567
|
+
ICU_GENCFU_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/bin/gencfu
|
|
568
|
+
|
|
569
|
+
//ICU gencmn executable
|
|
570
|
+
ICU_GENCMN_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/sbin/gencmn
|
|
571
|
+
|
|
572
|
+
//ICU gencnval executable
|
|
573
|
+
ICU_GENCNVAL_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/bin/gencnval
|
|
574
|
+
|
|
575
|
+
//ICU gendict executable
|
|
576
|
+
ICU_GENDICT_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/bin/gendict
|
|
577
|
+
|
|
578
|
+
//ICU gennorm2 executable
|
|
579
|
+
ICU_GENNORM2_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/sbin/gennorm2
|
|
580
|
+
|
|
581
|
+
//ICU genrb executable
|
|
582
|
+
ICU_GENRB_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/bin/genrb
|
|
583
|
+
|
|
584
|
+
//ICU gensprep executable
|
|
585
|
+
ICU_GENSPREP_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/sbin/gensprep
|
|
586
|
+
|
|
587
|
+
//ICU i18n library (debug)
|
|
588
|
+
ICU_I18N_LIBRARY_DEBUG:FILEPATH=ICU_I18N_LIBRARY_DEBUG-NOTFOUND
|
|
589
|
+
|
|
590
|
+
//ICU i18n library (release)
|
|
591
|
+
ICU_I18N_LIBRARY_RELEASE:FILEPATH=/opt/homebrew/opt/icu4c@78/lib/libicui18n.dylib
|
|
592
|
+
|
|
593
|
+
//ICU icu-config executable
|
|
594
|
+
ICU_ICU-CONFIG_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/bin/icu-config
|
|
595
|
+
|
|
596
|
+
//ICU icuinfo executable
|
|
597
|
+
ICU_ICUINFO_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/bin/icuinfo
|
|
598
|
+
|
|
599
|
+
//ICU icupkg executable
|
|
600
|
+
ICU_ICUPKG_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/sbin/icupkg
|
|
601
|
+
|
|
602
|
+
//ICU include directory
|
|
603
|
+
ICU_INCLUDE_DIR:PATH=/opt/homebrew/opt/icu4c@78/include
|
|
604
|
+
|
|
605
|
+
//ICU makeconv executable
|
|
606
|
+
ICU_MAKECONV_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/bin/makeconv
|
|
607
|
+
|
|
608
|
+
//ICU Makefile.inc data file
|
|
609
|
+
ICU_MAKEFILE_INC:FILEPATH=/opt/homebrew/opt/icu4c@78/lib/icu/78.2/Makefile.inc
|
|
610
|
+
|
|
611
|
+
//ICU pkgdata executable
|
|
612
|
+
ICU_PKGDATA_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/bin/pkgdata
|
|
613
|
+
|
|
614
|
+
//ICU pkgdata.inc data file
|
|
615
|
+
ICU_PKGDATA_INC:FILEPATH=/opt/homebrew/opt/icu4c@78/lib/icu/78.2/pkgdata.inc
|
|
616
|
+
|
|
617
|
+
//ICU uconv executable
|
|
618
|
+
ICU_UCONV_EXECUTABLE:FILEPATH=/opt/homebrew/opt/icu4c@78/bin/uconv
|
|
619
|
+
|
|
620
|
+
//ICU uc library (debug)
|
|
621
|
+
ICU_UC_LIBRARY_DEBUG:FILEPATH=ICU_UC_LIBRARY_DEBUG-NOTFOUND
|
|
622
|
+
|
|
623
|
+
//ICU uc library (release)
|
|
624
|
+
ICU_UC_LIBRARY_RELEASE:FILEPATH=/opt/homebrew/opt/icu4c@78/lib/libicuuc.dylib
|
|
625
|
+
|
|
551
626
|
//Enable installation of googletest. (Projects embedding googletest
|
|
552
627
|
// may want to turn this OFF.)
|
|
553
628
|
INSTALL_GTEST:BOOL=ON
|
|
@@ -819,6 +894,12 @@ ZLIB_LIBRARY_DEBUG:FILEPATH=ZLIB_LIBRARY_DEBUG-NOTFOUND
|
|
|
819
894
|
//Path to a library.
|
|
820
895
|
ZLIB_LIBRARY_RELEASE:FILEPATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib/libz.tbd
|
|
821
896
|
|
|
897
|
+
//Path to a file.
|
|
898
|
+
ZVEC_INCLUDE_DIR:PATH=/opt/homebrew/opt/zvec/include
|
|
899
|
+
|
|
900
|
+
//Path to a library.
|
|
901
|
+
ZVEC_LIBRARY:FILEPATH=/opt/homebrew/opt/zvec/lib/libzvec.a
|
|
902
|
+
|
|
822
903
|
//Ruby extensions extension
|
|
823
904
|
_Ruby_DLEXT:STRING=bundle
|
|
824
905
|
|
|
@@ -1255,7 +1336,7 @@ CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
|
|
1255
1336
|
//ADVANCED property for variable: CMAKE_NM
|
|
1256
1337
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
|
1257
1338
|
//number of local generators
|
|
1258
|
-
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=
|
|
1339
|
+
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=2
|
|
1259
1340
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
|
1260
1341
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
|
1261
1342
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
|
@@ -1348,6 +1429,8 @@ CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1
|
|
|
1348
1429
|
EXPORT_TARGETS:INTERNAL=yaml-cpp
|
|
1349
1430
|
//Details about finding Git
|
|
1350
1431
|
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/opt/homebrew/bin/git][v2.53.0()]
|
|
1432
|
+
//Details about finding ICU
|
|
1433
|
+
FIND_PACKAGE_MESSAGE_DETAILS_ICU:INTERNAL=[/opt/homebrew/opt/icu4c@78/include][/opt/homebrew/opt/icu4c@78/lib/libicuuc.dylib;/opt/homebrew/opt/icu4c@78/lib/libicudata.dylib;/opt/homebrew/opt/icu4c@78/lib/libicui18n.dylib][found components: uc data i18n ][v78.2()]
|
|
1351
1434
|
//Details about finding PythonInterp
|
|
1352
1435
|
FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/opt/homebrew/bin/python3.14][v3.14.3()]
|
|
1353
1436
|
//Details about finding Ruby
|
|
@@ -1518,6 +1601,56 @@ HAVE___SYNC_VAL_COMPARE_AND_SWAP:INTERNAL=1
|
|
|
1518
1601
|
HAVE___UINT16:INTERNAL=
|
|
1519
1602
|
//Result of TRY_COMPILE
|
|
1520
1603
|
HAVE_uint32_t:INTERNAL=TRUE
|
|
1604
|
+
//ADVANCED property for variable: ICU_DATA_LIBRARY_DEBUG
|
|
1605
|
+
ICU_DATA_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
|
|
1606
|
+
//ADVANCED property for variable: ICU_DATA_LIBRARY_RELEASE
|
|
1607
|
+
ICU_DATA_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
|
|
1608
|
+
//ADVANCED property for variable: ICU_DERB_EXECUTABLE
|
|
1609
|
+
ICU_DERB_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1610
|
+
//ADVANCED property for variable: ICU_GENBRK_EXECUTABLE
|
|
1611
|
+
ICU_GENBRK_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1612
|
+
//ADVANCED property for variable: ICU_GENCCODE_EXECUTABLE
|
|
1613
|
+
ICU_GENCCODE_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1614
|
+
//ADVANCED property for variable: ICU_GENCFU_EXECUTABLE
|
|
1615
|
+
ICU_GENCFU_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1616
|
+
//ADVANCED property for variable: ICU_GENCMN_EXECUTABLE
|
|
1617
|
+
ICU_GENCMN_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1618
|
+
//ADVANCED property for variable: ICU_GENCNVAL_EXECUTABLE
|
|
1619
|
+
ICU_GENCNVAL_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1620
|
+
//ADVANCED property for variable: ICU_GENDICT_EXECUTABLE
|
|
1621
|
+
ICU_GENDICT_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1622
|
+
//ADVANCED property for variable: ICU_GENNORM2_EXECUTABLE
|
|
1623
|
+
ICU_GENNORM2_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1624
|
+
//ADVANCED property for variable: ICU_GENRB_EXECUTABLE
|
|
1625
|
+
ICU_GENRB_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1626
|
+
//ADVANCED property for variable: ICU_GENSPREP_EXECUTABLE
|
|
1627
|
+
ICU_GENSPREP_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1628
|
+
//ADVANCED property for variable: ICU_I18N_LIBRARY_DEBUG
|
|
1629
|
+
ICU_I18N_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
|
|
1630
|
+
//ADVANCED property for variable: ICU_I18N_LIBRARY_RELEASE
|
|
1631
|
+
ICU_I18N_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
|
|
1632
|
+
//ADVANCED property for variable: ICU_ICU-CONFIG_EXECUTABLE
|
|
1633
|
+
ICU_ICU-CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1634
|
+
//ADVANCED property for variable: ICU_ICUINFO_EXECUTABLE
|
|
1635
|
+
ICU_ICUINFO_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1636
|
+
//ADVANCED property for variable: ICU_ICUPKG_EXECUTABLE
|
|
1637
|
+
ICU_ICUPKG_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1638
|
+
//ADVANCED property for variable: ICU_INCLUDE_DIR
|
|
1639
|
+
ICU_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
|
1640
|
+
//ADVANCED property for variable: ICU_MAKECONV_EXECUTABLE
|
|
1641
|
+
ICU_MAKECONV_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1642
|
+
//ADVANCED property for variable: ICU_MAKEFILE_INC
|
|
1643
|
+
ICU_MAKEFILE_INC-ADVANCED:INTERNAL=1
|
|
1644
|
+
//ADVANCED property for variable: ICU_PKGDATA_EXECUTABLE
|
|
1645
|
+
ICU_PKGDATA_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1646
|
+
//ADVANCED property for variable: ICU_PKGDATA_INC
|
|
1647
|
+
ICU_PKGDATA_INC-ADVANCED:INTERNAL=1
|
|
1648
|
+
//ADVANCED property for variable: ICU_UCONV_EXECUTABLE
|
|
1649
|
+
ICU_UCONV_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1650
|
+
//ADVANCED property for variable: ICU_UC_LIBRARY_DEBUG
|
|
1651
|
+
ICU_UC_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
|
|
1652
|
+
//ADVANCED property for variable: ICU_UC_LIBRARY_RELEASE
|
|
1653
|
+
ICU_UC_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
|
|
1521
1654
|
//ADVANCED property for variable: PYTHON_EXECUTABLE
|
|
1522
1655
|
PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1
|
|
1523
1656
|
//ADVANCED property for variable: ProcessorCount_cmd_sysctl
|
|
@@ -2,72 +2,7 @@
|
|
|
2
2
|
"InstallScripts" :
|
|
3
3
|
[
|
|
4
4
|
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/cmake_install.cmake",
|
|
5
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/_deps/rice-build/cmake_install.cmake"
|
|
6
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/cmake_install.cmake",
|
|
7
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/cmake_install.cmake",
|
|
8
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/googletest/cmake_install.cmake",
|
|
9
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/googletest/googletest-1.10.0/cmake_install.cmake",
|
|
10
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/googletest/googletest-1.10.0/googlemock/cmake_install.cmake",
|
|
11
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/googletest/googletest-1.10.0/googletest/cmake_install.cmake",
|
|
12
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/gflags/cmake_install.cmake",
|
|
13
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/gflags/gflags-2.2.2/cmake_install.cmake",
|
|
14
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/glog/cmake_install.cmake",
|
|
15
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/glog/glog-0.5.0/cmake_install.cmake",
|
|
16
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/sparsehash/cmake_install.cmake",
|
|
17
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/yaml-cpp/cmake_install.cmake",
|
|
18
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/yaml-cpp/yaml-cpp-0.6.3/cmake_install.cmake",
|
|
19
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/protobuf/cmake_install.cmake",
|
|
20
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/protobuf/protobuf-3.21.12/cmake_install.cmake",
|
|
21
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/antlr/cmake_install.cmake",
|
|
22
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/antlr/antlr4/runtime/Cpp/cmake_install.cmake",
|
|
23
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/antlr/antlr4/runtime/Cpp/runtime/cmake_install.cmake",
|
|
24
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/lz4/cmake_install.cmake",
|
|
25
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/rocksdb/cmake_install.cmake",
|
|
26
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/rocksdb/rocksdb-8.1.1/cmake_install.cmake",
|
|
27
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/CRoaring/cmake_install.cmake",
|
|
28
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/CRoaring/CRoaring-2.0.4/cmake_install.cmake",
|
|
29
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/CRoaring/CRoaring-2.0.4/src/cmake_install.cmake",
|
|
30
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/arrow/cmake_install.cmake",
|
|
31
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/thirdparty/magic_enum/cmake_install.cmake",
|
|
32
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/cmake_install.cmake",
|
|
33
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/ailego/cmake_install.cmake",
|
|
34
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/cmake_install.cmake",
|
|
35
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/framework/cmake_install.cmake",
|
|
36
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/algorithm/cmake_install.cmake",
|
|
37
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/algorithm/cluster/cmake_install.cmake",
|
|
38
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/algorithm/flat/cmake_install.cmake",
|
|
39
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/algorithm/flat_sparse/cmake_install.cmake",
|
|
40
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/algorithm/ivf/cmake_install.cmake",
|
|
41
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/algorithm/hnsw/cmake_install.cmake",
|
|
42
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/algorithm/hnsw_sparse/cmake_install.cmake",
|
|
43
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/metric/cmake_install.cmake",
|
|
44
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/quantizer/cmake_install.cmake",
|
|
45
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/utility/cmake_install.cmake",
|
|
46
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/interface/cmake_install.cmake",
|
|
47
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/core/mixed_reducer/cmake_install.cmake",
|
|
48
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/db/cmake_install.cmake",
|
|
49
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/db/common/cmake_install.cmake",
|
|
50
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/db/index/cmake_install.cmake",
|
|
51
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/src/db/sqlengine/cmake_install.cmake",
|
|
52
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/cmake_install.cmake",
|
|
53
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/ailego/cmake_install.cmake",
|
|
54
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/db/cmake_install.cmake",
|
|
55
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/db/common/cmake_install.cmake",
|
|
56
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/db/sqlengine/cmake_install.cmake",
|
|
57
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/db/index/cmake_install.cmake",
|
|
58
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/cmake_install.cmake",
|
|
59
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/algorithm/cmake_install.cmake",
|
|
60
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/algorithm/cluster/cmake_install.cmake",
|
|
61
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/algorithm/flat/cmake_install.cmake",
|
|
62
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/algorithm/flat_sparse/cmake_install.cmake",
|
|
63
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/algorithm/ivf/cmake_install.cmake",
|
|
64
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/algorithm/hnsw/cmake_install.cmake",
|
|
65
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/algorithm/hnsw_sparse/cmake_install.cmake",
|
|
66
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/framework/cmake_install.cmake",
|
|
67
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/metric/cmake_install.cmake",
|
|
68
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/utility/cmake_install.cmake",
|
|
69
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/interface/cmake_install.cmake",
|
|
70
|
-
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/zvec/tests/core/quantizer/cmake_install.cmake"
|
|
5
|
+
"/Users/dewayne/sandbox/git_repos/madbomber/zvec-ruby/ext/build/macos-debug/_deps/rice-build/cmake_install.cmake"
|
|
71
6
|
],
|
|
72
7
|
"Parallel" : false
|
|
73
8
|
}
|