-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ignition-msgs5][ignition-transport8] Add new ports 🤖 (#11272)
* [ignition-msgs5][ignition-transport8] Add new ports * fixup
- Loading branch information
1 parent
dfb1dc0
commit d725b00
Showing
5 changed files
with
38 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Source: ignition-msgs5 | ||
Version: 5.1.0 | ||
Build-Depends: ignition-modularscripts, ignition-cmake2, ignition-math6, protobuf, tinyxml2 | ||
Description: Middleware protobuf messages for robotics | ||
Supports: !(arm|linux|uwp) |
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,18 @@ | ||
# Explicitly disable cross-compilation until the upstream discussion | ||
# https://github.com/ignitionrobotics/ign-msgs/issues/34 is solved | ||
vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "linux" "uwp") | ||
|
||
include(${CURRENT_INSTALLED_DIR}/share/ignitionmodularscripts/ignition_modular_library.cmake) | ||
|
||
# This port needs to generate protobuf messages with a custom plugin generator, | ||
# so it needs to have in Windows the relative protobuf dll available in the PATH | ||
set(path_backup $ENV{PATH}) | ||
vcpkg_add_to_path(${CURRENT_INSTALLED_DIR}/bin) | ||
vcpkg_add_to_path(${CURRENT_INSTALLED_DIR}/debug/bin) | ||
|
||
ignition_modular_library(NAME msgs | ||
VERSION "5.1.0" | ||
SHA512 db485f737c465b310602342a1a751c561473e330eb18d1b322b32d13de246536fe6a7efdf245faaaa9be1c9bfce662b2d39d1bb7cffc37e52690893cb47cc2ee) | ||
|
||
# Restore old path | ||
set(ENV{PATH} ${path_backup}) |
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,4 @@ | ||
Source: ignition-transport8 | ||
Version: 8.0.0 | ||
Build-Depends: cppzmq, ignition-cmake2, ignition-msgs5, libuuid (!windows&!uwp), protobuf, sqlite3, zeromq | ||
Description: Transport middleware for robotics |
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,7 @@ | ||
include(${CURRENT_INSTALLED_DIR}/share/ignitionmodularscripts/ignition_modular_library.cmake) | ||
|
||
ignition_modular_library(NAME transport | ||
VERSION "8.0.0" | ||
SHA512 ab1bae994a8676864ceb78b87f2258b8ed22036aed87e815fc22f830edd8b087d1ef0406dc0d053ea823d95b5fb765c4867d27ce5653f1d685001aab0cf0ec03 | ||
# This can be removed when the pc file of libuuid on Windows is fixed | ||
DISABLE_PKGCONFIG_INSTALL) |
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