-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kai-Uwe Hermann <[email protected]>
- Loading branch information
1 parent
f1a0a9f
commit a49ddcd
Showing
2 changed files
with
11 additions
and
3 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
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,4 +1,10 @@ | ||
add_subdirectory(can_dpm1000) | ||
add_subdirectory(slac) | ||
add_subdirectory(gpio) | ||
add_subdirectory(ocpp) | ||
if((NOT libslac IN_LIST EVEREST_EXCLUDE_DEPENDENCIES) AND (NOT libfsm IN_LIST EVEREST_EXCLUDE_DEPENDENCIES)) | ||
add_subdirectory(slac) | ||
endif() | ||
if(NOT everest-gpio IN_LIST EVEREST_EXCLUDE_DEPENDENCIES) | ||
add_subdirectory(gpio) | ||
endif() | ||
if(NOT libocpp IN_LIST EVEREST_EXCLUDE_DEPENDENCIES) | ||
add_subdirectory(ocpp) | ||
endif() |