-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #339 from lf-lang/zephyr-esp-issue
- Loading branch information
Showing
10 changed files
with
108 additions
and
78 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
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,5 +1,4 @@ | ||
set(FEDERATED_SOURCES clock-sync.c federate.c) | ||
list(APPEND INFO_SOURCES ${FEDERATED_SOURCES}) | ||
|
||
list(TRANSFORM FEDERATED_SOURCES PREPEND federated/) | ||
target_sources(core PRIVATE ${FEDERATED_SOURCES}) | ||
list(APPEND REACTORC_SOURCES ${FEDERATED_SOURCES}) |
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,5 +1,4 @@ | ||
set(LF_NETWORK_FILES net_util.c) | ||
list(APPEND INFO_SOURCES ${LF_NETWORK_FILES}) | ||
|
||
list(TRANSFORM LF_NETWORK_FILES PREPEND federated/network/) | ||
target_sources(core PRIVATE ${LF_NETWORK_FILES}) | ||
list(APPEND REACTORC_SOURCES ${LF_NETWORK_FILES}) |
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,5 +1,4 @@ | ||
set(MODAL_SOURCES modes.c) | ||
list(APPEND INFO_SOURCES ${MODAL_SOURCES}) | ||
|
||
list(TRANSFORM MODAL_SOURCES PREPEND modal_models/) | ||
target_sources(core PRIVATE ${MODAL_SOURCES}) | ||
list(APPEND REACTORC_SOURCES ${MODAL_SOURCES}) |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
set(UTIL_SOURCES vector.c pqueue_base.c pqueue_tag.c pqueue.c util.c semaphore.c) | ||
|
||
list(APPEND INFO_SOURCES ${UTIL_SOURCES}) | ||
|
||
list(TRANSFORM UTIL_SOURCES PREPEND utils/) | ||
target_sources(core PRIVATE ${UTIL_SOURCES}) | ||
list(APPEND REACTORC_SOURCES ${UTIL_SOURCES}) | ||
|
||
# Include sources from subdirectories | ||
include(utils/hashset/CMakeLists.txt) |
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,6 +1,5 @@ | ||
set(HASHSET_SOURCES hashset.c hashset_itr.c) | ||
|
||
list(APPEND INFO_SOURCES ${HASHSET_SOURCES}) | ||
|
||
list(TRANSFORM HASHSET_SOURCES PREPEND utils/hashset/) | ||
target_sources(core PRIVATE ${HASHSET_SOURCES}) | ||
list(APPEND REACTORC_SOURCES ${HASHSET_SOURCES}) |