- 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
41 lines
1.6 KiB
CMake
41 lines
1.6 KiB
CMake
# detect if we try to build inside everest-core and libcbv2g is available
|
|
message(STATUS "Attempting build with autodetected local dependencies")
|
|
|
|
get_filename_component(EVC_EVEREST_LIB_DIR ${PROJECT_SOURCE_DIR} DIRECTORY)
|
|
set(EVC_CBV2G_DIR "${EVC_EVEREST_LIB_DIR}/cbv2g")
|
|
if (EVC_CBV2G_DIR AND NOT DISABLE_ISO15118_LOCAL_DEPENDENCIES)
|
|
message(STATUS "Detected libcbv2g in ${EVC_CBV2G_DIR}, if you do not want this set -DDISABLE_ISO15118_LOCAL_DEPENDENCIES=ON")
|
|
add_subdirectory("${EVC_CBV2G_DIR}" libcbv2g)
|
|
endif()
|
|
|
|
function(ev_register_library_target NAME)
|
|
endfunction()
|
|
|
|
set(EVC_UTIL_DIR "${EVC_EVEREST_LIB_DIR}/util")
|
|
if (EVC_UTIL_DIR AND NOT DISABLE_ISO15118_LOCAL_DEPENDENCIES)
|
|
message(STATUS "Detected util in ${EVC_UTIL_DIR}, if you do not want this set -DDISABLE_ISO15118_LOCAL_DEPENDENCIES=ON")
|
|
if (BUILD_TESTING)
|
|
message(STATUS "Setting BUILD_TESTING temporary to false")
|
|
set(CACHE_BUILD_TESTING ON)
|
|
set(BUILD_TESTING OFF)
|
|
endif()
|
|
add_subdirectory("${EVC_UTIL_DIR}" util)
|
|
if (CACHE_BUILD_TESTING)
|
|
set(BUILD_TESTING ON)
|
|
endif()
|
|
endif()
|
|
|
|
# set venv location
|
|
set(${PROJECT_NAME}_PYTHON_VENV_PATH "${CMAKE_BINARY_DIR}/venv" CACHE PATH "Path to python venv")
|
|
|
|
ev_setup_python_executable(
|
|
USE_PYTHON_VENV ${${PROJECT_NAME}_USE_PYTHON_VENV}
|
|
PYTHON_VENV_PATH ${${PROJECT_NAME}_PYTHON_VENV_PATH}
|
|
)
|
|
get_filename_component(EVC_LIB_DIR ${EVC_EVEREST_LIB_DIR} DIRECTORY)
|
|
get_filename_component(EVC_DIR ${EVC_LIB_DIR} DIRECTORY)
|
|
set(EVC_EDM_DIR "${EVC_DIR}/applications/dependency_manager")
|
|
|
|
# use edm from everest-core
|
|
add_subdirectory("${EVC_EDM_DIR}" edm_tool)
|