summaryrefslogtreecommitdiffstats
path: root/BUILD.bazel
diff options
context:
space:
mode:
authorFabrice <fabrice@schaub-dev.xyz>2026-04-16 09:39:32 +0200
committerFabrice <fabrice@schaub-dev.xyz>2026-04-16 09:39:32 +0200
commit2e348c8925ecbd627404a387100b9ad300041ad5 (patch)
treed84df5b93c0e0dd5379a217d3c9eccecc6e480ee /BUILD.bazel
init
Diffstat (limited to 'BUILD.bazel')
-rw-r--r--BUILD.bazel9
1 files changed, 9 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
new file mode 100644
index 0000000..bd67ca4
--- /dev/null
+++ b/BUILD.bazel
@@ -0,0 +1,9 @@
+load("@rules_cc//cc:defs.bzl", "cc_library")
+
+cc_library(
+ name = "omni",
+ includes = ["//"],
+ deps = [
+ "//omni:omni_impl"
+ ]
+)