Skip to content

Commit

Permalink
fix bazel
Browse files Browse the repository at this point in the history
Signed-off-by: Dima Dorezyuk <[email protected]>
  • Loading branch information
Dima Dorezyuk committed Oct 22, 2024
1 parent 785dde2 commit bd57237
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/staging/util/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cc_library(
name = "util",
hdrs = ["include/everest/staging/EnumFlags.hpp"],
visibility = ["//visibility:public"],
includes = ["include"],
)
24 changes: 24 additions & 0 deletions modules/EvseManager/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
load("//modules:module.bzl", "cc_everest_module")

IMPLS = [
"energy_grid",
"evse",
"token_provider",
"random_delay",
]

cc_everest_module(
name = "EvseManager",
deps = [
"@pugixml//:libpugixml",
"@sigslot//:sigslot",
"@everest-core//lib/staging/util:util"
],
impls = IMPLS,
srcs = glob(
[
"*.cpp",
"*.hpp",
],
),
)

0 comments on commit bd57237

Please sign in to comment.