diff --git a/.gitignore b/.gitignore index 2e431ae..b2b06f3 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ compile_commands.json .emacs.desktop* **/.vscode TAGS +bazel-* diff --git a/MODULE.bazel b/MODULE.bazel new file mode 100644 index 0000000..5ecad5b --- /dev/null +++ b/MODULE.bazel @@ -0,0 +1,3 @@ +module( + name = "parallel-hashmap" +) \ No newline at end of file diff --git a/WORKSPACE b/WORKSPACE new file mode 100644 index 0000000..706b566 --- /dev/null +++ b/WORKSPACE @@ -0,0 +1 @@ +workspace(name = "parallel-hashmap") diff --git a/parallel_hashmap/BUILD b/parallel_hashmap/BUILD new file mode 100644 index 0000000..817e5eb --- /dev/null +++ b/parallel_hashmap/BUILD @@ -0,0 +1,6 @@ +cc_library( + name = "phmap", + srcs = glob(["*.cpp"]), + hdrs = glob(["*.h"]), + visibility = ["//visibility:public"], +) \ No newline at end of file