Add extracted tools: CitrineOS, OpenOCPP, ShapeShifter

- 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
This commit is contained in:
Eric F
2026-06-08 00:38:27 -04:00
parent 468cfeaa50
commit d398a6ced2
7326 changed files with 1177561 additions and 7 deletions

View File

@@ -0,0 +1,48 @@
add_library(everest_yaml STATIC)
add_library(everest::yaml ALIAS everest_yaml)
ev_register_library_target(everest_yaml)
target_sources(everest_yaml
PRIVATE
lib/yaml_loader.cpp
)
target_include_directories(everest_yaml
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/everest>
)
target_compile_features(everest_yaml PUBLIC cxx_std_17)
set_target_properties(everest_yaml PROPERTIES
EXPORT_NAME yaml
POSITION_INDEPENDENT_CODE ON
)
target_link_libraries(everest_yaml
PUBLIC
nlohmann_json::nlohmann_json
PRIVATE
ryml::ryml
fmt::fmt
everest::log
)
if (DISABLE_EDM)
include(GNUInstallDirs)
install(
TARGETS everest_yaml
EXPORT everest-core-targets
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/everest
)
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/everest
FILES_MATCHING PATTERN "*.hpp"
)
endif()