From a141c401f78467bc15f62882fca5d55a007cacbb Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Mon, 17 Feb 2025 00:21:48 +0100 Subject: Reorganize everything --- asl/synchronization/BUILD.bazel | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 asl/synchronization/BUILD.bazel (limited to 'asl/synchronization/BUILD.bazel') diff --git a/asl/synchronization/BUILD.bazel b/asl/synchronization/BUILD.bazel new file mode 100644 index 0000000..29e0a62 --- /dev/null +++ b/asl/synchronization/BUILD.bazel @@ -0,0 +1,10 @@ +cc_library( + name = "atomic", + hdrs = [ + "atomic.hpp", + ], + deps = [ + "//asl/base", + ], + visibility = ["//visibility:public"], +) -- cgit