- 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
30 lines
663 B
Plaintext
30 lines
663 B
Plaintext
load("@rules_foreign_cc//foreign_cc:defs.bzl", "configure_make")
|
|
|
|
filegroup(
|
|
name = "all_srcs",
|
|
srcs = glob(["**"]),
|
|
)
|
|
|
|
configure_make(
|
|
name = "openssl",
|
|
configure_command = "Configure",
|
|
configure_in_place = True,
|
|
configure_options = [
|
|
"linux-armv4",
|
|
"no-shared",
|
|
"no-afalgeng",
|
|
"no-dynamic-engine",
|
|
"no-tests",
|
|
] + select({
|
|
"@platforms//cpu:armv7": ["no-atexit"],
|
|
"//conditions:default": [],
|
|
}),
|
|
lib_source = ":all_srcs",
|
|
out_static_libs = [
|
|
"libssl.a",
|
|
"libcrypto.a",
|
|
],
|
|
targets = ["install_sw"],
|
|
visibility = ["//visibility:public"],
|
|
)
|