-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: removed duplicate file Signed-off-by: James Chapman <[email protected]> * fix: might fix BAZEL build Signed-off-by: James Chapman <[email protected]> * Initial draft for separate util library Signed-off-by: aw <[email protected]> * clang-format Signed-off-by: aw <[email protected]> * added @hikinggrass comments Signed-off-by: aw <[email protected]> * fix bazel Signed-off-by: Dima Dorezyuk <[email protected]> * more consistent directory structure Signed-off-by: aw <[email protected]> * fix: fixed missing header when building MBED TLS version of V2G Signed-off-by: James Chapman <[email protected]> --------- Signed-off-by: James Chapman <[email protected]> Signed-off-by: aw <[email protected]> Signed-off-by: Dima Dorezyuk <[email protected]> Co-authored-by: aw <[email protected]> Co-authored-by: Dima Dorezyuk <[email protected]> Co-authored-by: Piet Gömpel <[email protected]>
- Loading branch information
1 parent
1a162cc
commit 2ec32d8
Showing
15 changed files
with
96 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
add_subdirectory(can_dpm1000) | ||
add_subdirectory(util) | ||
|
||
if(EVEREST_DEPENDENCY_ENABLED_LIBEVSE_SECURITY) | ||
add_subdirectory(evse_security) | ||
add_subdirectory(tls) | ||
endif() | ||
|
||
if(EVEREST_DEPENDENCY_ENABLED_LIBSLAC AND EVEREST_DEPENDENCY_ENABLED_LIBFSM) | ||
add_subdirectory(slac) | ||
endif() | ||
|
||
if(EVEREST_DEPENDENCY_ENABLED_EVEREST_GPIO) | ||
add_subdirectory(gpio) | ||
endif() | ||
|
||
if(EVEREST_DEPENDENCY_ENABLED_LIBOCPP) | ||
add_subdirectory(ocpp) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
cc_library( | ||
name = "util", | ||
hdrs = ["include/*.hpp"], | ||
visibility = ["//visibility:public"], | ||
includes = ["include"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
add_library(everest_staging_util INTERFACE) | ||
add_library(everest::staging::util ALIAS everest_staging_util) | ||
|
||
target_include_directories(everest_staging_util | ||
INTERFACE | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> | ||
) | ||
|
||
if (BUILD_TESTING) | ||
add_subdirectory(tests) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
add_executable(EnumFlagsTest | ||
EnumFlagsTest.cpp | ||
) | ||
|
||
target_link_libraries(EnumFlagsTest | ||
PRIVATE | ||
GTest::gtest_main | ||
everest::staging::util | ||
) | ||
|
||
include(GoogleTest) | ||
gtest_discover_tests(EnumFlagsTest) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.