Skip to content

Commit

Permalink
Fix bazel build
Browse files Browse the repository at this point in the history
  • Loading branch information
will-v-pi committed Nov 27, 2024
1 parent 9287b1a commit 8f2cc45
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ cc_binary(
"//errors",
"//lib/nlohmann_json:json",
"//picoboot_connection",
"//lib/littlefs",
"@libusb",
"@pico-sdk//src/common/boot_picobin_headers",
"@pico-sdk//src/common/boot_picoboot_headers",
Expand Down
14 changes: 14 additions & 0 deletions lib/littlefs/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package(default_visibility = ["//visibility:public"])

cc_library(
name = "littlefs",
srcs = [
"lfs.c",
"lfs_util.c",
],
hdrs = [
"lfs.h",
"lfs_util.h",
],
includes = ["."],
)

0 comments on commit 8f2cc45

Please sign in to comment.