- CitrineOS core extracted (CSMS OCPP 2.0.1) - OpenOCPP extracted (firmware OCPP 1.6J/2.0.1) - ShapeShifter library installed (pip install -e) - ShapeShifter specification extracted - EVerest extracted TODO updated with progress
18 lines
427 B
Python
18 lines
427 B
Python
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
|
|
cc_library(
|
|
name = "everest-sqlite",
|
|
srcs = glob(["lib/everest/database/sqlite/*.cpp"]),
|
|
hdrs = glob(["include/**/*.hpp"]),
|
|
deps = [
|
|
"@sqlite3",
|
|
"@com_github_nlohmann_json//:json",
|
|
"//lib/everest/log:liblog",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
strip_include_prefix = "include",
|
|
copts = ["-std=c++17"],
|
|
)
|