-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description ## Type of change Please delete options that are not relevant. - Bug fix (non-breaking change which fixes an issue) - New feature (non-breaking change which adds functionality) - Breaking change (fix or feature that would cause existing functionality to not work as expected) ## Checklist before requesting a review - [ ] I have performed a self-review of my code. - [ ] If it is a core feature, I have added thorough tests. - [ ] If this is a new component I have added examples. - [ ] I updated the README and related documentation.
- Loading branch information
1 parent
7a18aae
commit 01e8b1d
Showing
38 changed files
with
187 additions
and
224 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
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,59 @@ | ||
declare_module( | ||
NAME examples | ||
DEPENDS_ON_MODULES base ipc serdes | ||
DEPENDS_ON_EXTERNAL_PROJECTS Eigen3 fmt Protobuf | ||
EXCLUDE_FROM_ALL | ||
) | ||
|
||
find_package(Eigen3 REQUIRED) | ||
find_package(fmt REQUIRED) | ||
|
||
add_subdirectory(proto) | ||
|
||
# library sources | ||
set(TYPES_SOURCES | ||
src/types/pose.cpp | ||
README.md | ||
include/eolo/examples/types/pose.h) | ||
|
||
# library target | ||
define_module_library( | ||
NAME examples_types | ||
PUBLIC_LINK_LIBS | ||
Eigen3::Eigen | ||
fmt::fmt | ||
PRIVATE_LINK_LIBS "" | ||
SOURCES ${TYPES_SOURCES} | ||
PUBLIC_INCLUDE_PATHS | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> | ||
$<INSTALL_INTERFACE:include> | ||
PRIVATE_INCLUDE_PATHS "" | ||
SYSTEM_PRIVATE_INCLUDE_PATHS "") | ||
|
||
# library sources | ||
set(TYPES_PROTOBUF_SOURCES | ||
src/types_protobuf/geometry.cpp | ||
src/types_protobuf/pose.cpp | ||
include/eolo/examples/types_protobuf/geometry.h | ||
include/eolo/examples/types_protobuf/pose.h) | ||
|
||
# library target | ||
define_module_library( | ||
NAME examples_types_protobuf | ||
PUBLIC_LINK_LIBS | ||
eolo::base | ||
eolo::serdes | ||
eolo::examples_types | ||
eolo::examples_types_proto | ||
Eigen3::Eigen | ||
PRIVATE_LINK_LIBS "" | ||
SOURCES ${TYPES_PROTOBUF_SOURCES} | ||
PUBLIC_INCLUDE_PATHS | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> | ||
$<INSTALL_INTERFACE:include> | ||
PRIVATE_INCLUDE_PATHS "" | ||
SYSTEM_PRIVATE_INCLUDE_PATHS "") | ||
|
||
# Subprojects | ||
add_subdirectory(tests) | ||
add_subdirectory(examples) |
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
File renamed without changes.
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
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...buf/proto/eolo/types/proto/geometry.proto → .../eolo/examples/types/proto/geometry.proto
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
4 changes: 2 additions & 2 deletions
4
...rotobuf/proto/eolo/types/proto/pose.proto → ...roto/eolo/examples/types/proto/pose.proto
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
Oops, something went wrong.