-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bring zenoh router via vendor. (#63)
* Bring zenoh router via vendor. Signed-off-by: Franco Cipollone <[email protected]>
- Loading branch information
1 parent
e41765a
commit cecdac4
Showing
4 changed files
with
51 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
cmake_minimum_required(VERSION 3.16) | ||
project(zenohd_vendor) | ||
|
||
# Default to C++17 | ||
if(NOT CMAKE_CXX_STANDARD) | ||
set(CMAKE_CXX_STANDARD 17) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
endif() | ||
|
||
find_package(ament_cmake REQUIRED) | ||
|
||
include(ExternalProject) | ||
|
||
ExternalProject_Add( | ||
zenoh | ||
PREFIX ${CMAKE_BINARY_DIR}/_cargo_deps | ||
GIT_REPOSITORY https://github.com/eclipse-zenoh/zenoh.git | ||
GIT_TAG master | ||
BUILD_COMMAND cargo build --package zenohd --release | ||
CONFIGURE_COMMAND "" # Disable the configure step | ||
INSTALL_COMMAND "" | ||
BUILD_IN_SOURCE 1 | ||
) | ||
|
||
# Install the zenohd executable from the rust crate | ||
install( | ||
PROGRAMS ${CMAKE_BINARY_DIR}/_cargo_deps/src/zenoh/target/release/zenohd | ||
DESTINATION bin | ||
) | ||
|
||
# TODO(francocipollone): Install zenoh router plugins | ||
|
||
ament_package() |
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,17 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>zenohd_vendor</name> | ||
<version>0.0.1</version> | ||
<description>Vendor pkg to install zenoh router</description> | ||
<maintainer email="[email protected]">FrancoCipollone</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<!-- <build_depend>cargo</build_depend> --> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |