zvec 0.0.2 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d6f88eba541a4d535d54a2b8b43f0852ddfaa3c2b58ff41885ba51ae405c8428
4
- data.tar.gz: 0d383b42d8961c566f47f8763cdcdb19788b627e5a41087e10779080d5969d97
3
+ metadata.gz: f479270e489b596a21de3ed401f4ac8bd6d4e83c13febe4390e6e4a11615f00e
4
+ data.tar.gz: '06301395bfd0027f1e9c32520feddd0f55233fabb238a55e9aa917c40ea5aa87'
5
5
  SHA512:
6
- metadata.gz: 520389cf9f9394f982e367de3e08ad731c5b188b60efe4c863937742c823384dc05541e890f95d267bcd710dc4263300061978d546856148fd8f4ab1e29c661f
7
- data.tar.gz: '08866c1988ec0ed47a040ac9be95b4d15098f31dec925da3e25e62beffb3b828ae51c55ccb7aedd31a2ca7a08b84a537eb10299cf976ecc9045590a722906f33'
6
+ metadata.gz: dfc344481103cb05fe66e5cee4f53c2e8396018db58f865d07abba19b9ad3fe8df368ec6622dea608c5b8dd423bb28a8fdd2643aca26a326fc7abd97acc548b6
7
+ data.tar.gz: 9573b88d42ec83df5ecc55c0f6fdd4b6fc6c347514e571f3ad3dd2fb5d28ada219a22bbfaf7d1b753a17a658e73ae1b7dfa64572f6586178bbb6253cec0fd8c1
data/ext/CMakeLists.txt CHANGED
@@ -79,7 +79,7 @@ else()
79
79
  FetchContent_Declare(
80
80
  zvec_src
81
81
  GIT_REPOSITORY https://github.com/alibaba/zvec.git
82
- GIT_TAG 232803611ea91abc96904a92c878c4c67ddf73e6
82
+ GIT_TAG 1d5aeeed1df6e104443edf23891798f1ff0a8bf7
83
83
  GIT_SHALLOW FALSE
84
84
  GIT_SUBMODULES_RECURSE TRUE
85
85
  )
@@ -156,6 +156,12 @@ if(ZVEC_PREBUILT)
156
156
  "${ZVEC_INCLUDE_DIR}"
157
157
  )
158
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()
159
165
  else()
160
166
  # --- Source build: link against individual zvec targets ---
161
167
  target_include_directories(zvec_ext PRIVATE
@@ -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
@@ -820,10 +895,10 @@ ZLIB_LIBRARY_DEBUG:FILEPATH=ZLIB_LIBRARY_DEBUG-NOTFOUND
820
895
  ZLIB_LIBRARY_RELEASE:FILEPATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib/libz.tbd
821
896
 
822
897
  //Path to a file.
823
- ZVEC_INCLUDE_DIR:PATH=ZVEC_INCLUDE_DIR-NOTFOUND
898
+ ZVEC_INCLUDE_DIR:PATH=/opt/homebrew/opt/zvec/include
824
899
 
825
900
  //Path to a library.
826
- ZVEC_LIBRARY:FILEPATH=ZVEC_LIBRARY-NOTFOUND
901
+ ZVEC_LIBRARY:FILEPATH=/opt/homebrew/opt/zvec/lib/libzvec.a
827
902
 
828
903
  //Ruby extensions extension
829
904
  _Ruby_DLEXT:STRING=bundle
@@ -1261,7 +1336,7 @@ CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
1261
1336
  //ADVANCED property for variable: CMAKE_NM
1262
1337
  CMAKE_NM-ADVANCED:INTERNAL=1
1263
1338
  //number of local generators
1264
- CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=67
1339
+ CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=2
1265
1340
  //ADVANCED property for variable: CMAKE_OBJCOPY
1266
1341
  CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
1267
1342
  //ADVANCED property for variable: CMAKE_OBJDUMP
@@ -1354,6 +1429,8 @@ CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1
1354
1429
  EXPORT_TARGETS:INTERNAL=yaml-cpp
1355
1430
  //Details about finding Git
1356
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()]
1357
1434
  //Details about finding PythonInterp
1358
1435
  FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/opt/homebrew/bin/python3.14][v3.14.3()]
1359
1436
  //Details about finding Ruby
@@ -1524,6 +1601,56 @@ HAVE___SYNC_VAL_COMPARE_AND_SWAP:INTERNAL=1
1524
1601
  HAVE___UINT16:INTERNAL=
1525
1602
  //Result of TRY_COMPILE
1526
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
1527
1654
  //ADVANCED property for variable: PYTHON_EXECUTABLE
1528
1655
  PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1
1529
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
  }