Skip to content

Commit

Permalink
Just uploading some incomplete progress.
Browse files Browse the repository at this point in the history
  • Loading branch information
PizzaRoll04 committed Oct 25, 2024
1 parent f71f222 commit 47d4123
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 7 deletions.
Empty file added .gitmodules
Empty file.
14 changes: 8 additions & 6 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,8 @@ http_archive(
strip_prefix="protobuf-25.3",
sha256 = "3ae7a8f2181be28e5d694617c2b85c6561ba6a16bfcdc9db8e3a95077cab8815",
patches = [
"@//third_party:protobuf-0002-use-rules-python-headers.patch",
],
patch_args=["-p1"],
)

load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
"@//third_party:protobuf-0002-
)buf_deps.bzl", "protobuf_deps")
protobuf_deps()

http_archive(
Expand Down Expand Up @@ -428,3 +424,9 @@ http_archive(
integrity = "sha256-cSp9CdKiJlL7BqSa9RbgUZeaOYStsGfahnYOYO1Rp/U="
)

http_archive(
name="fast-cpp-csv-parser",
urls = ["https://github.com/ben-strasser/fast-cpp-csv-parser/archive/refs/heads/master.zip"],
strip_prefix = "fast-cpp-csv-parser-master",
)

20 changes: 20 additions & 0 deletions common/csv_reader/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package(features=["warning_compile_flags"])

cc_library(
name = "csv_reader",
hdrs = ["learn_descriptorcsv.hh"],
visibility = ["//visibility:public"],
srcs = ["learn_descriptors.cc"],
deps = [
"@"
]
)

cc_test(
name = "csv_reader_test",
srcs = ["csv_reader_test.cc"],
deps = [
"@com_google_googletest//:gtest_main",
":learn_descriptors",
]
)
Empty file added common/csv_reader/csv_reader.cc
Empty file.
1 change: 1 addition & 0 deletions common/csv_reader/csv_reader.hh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "csv.h"
Empty file.
1 change: 0 additions & 1 deletion experimental/learn_descriptors/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

package(features=["warning_compile_flags"])

cc_library(
Expand Down
6 changes: 6 additions & 0 deletions third_party/BUILD.cpp_fast_csv_parser
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cc_library(
name = "cpp_fast_csv_parser",
srcs = ["csv.h"],
hdrs = ["csh.h"],
visibility = ["//visibility:public"],
)

0 comments on commit 47d4123

Please sign in to comment.