-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[vcpkg-baseline][manyport] Fix baseline error (#11742)
* [fastrtps] Fix source hash * [cpp-taskflow] Update source hash * [eabase] Re-trigger CI test * Change repo * [sdformat9] Re-trigger CI test * update baseline * update baseline * [sdformat9] Fix find dependency urdfdom
- Loading branch information
Showing
10 changed files
with
34 additions
and
18 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
Source: cpp-taskflow | ||
Version: 2.2.0 | ||
Version: 2.2.0-1 | ||
Description: Fast Parallel Tasking Programming Library using Modern C++. | ||
Homepage: https://github.com/taskflow/taskflow |
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,4 @@ | ||
Source: eabase | ||
Version: 2.09.12 | ||
Version: 2.09.12-1 | ||
Homepage: https://github.com/electronicarts/EABase | ||
Description: Electronic Arts Base. EABase is a small set of header files that define platform-independent data types and macros. |
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,4 @@ | ||
Source: fastrtps | ||
Version: 1.5.0-2 | ||
Version: 1.5.0-3 | ||
Description: Eprosima Fast RTPS is a C++ implementation of the RTPS (Real Time Publish Subscribe) protocol, which provides publisher-subscriber communications over unreliable transports such as UDP, as defined and maintained by the Object Management Group (OMG) consortium. | ||
Build-Depends: openssl, asio, tinyxml2 |
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,17 @@ | ||
diff --git a/cmake/SearchForStuff.cmake b/cmake/SearchForStuff.cmake | ||
index 965f1ec..cf2acf4 100644 | ||
--- a/cmake/SearchForStuff.cmake | ||
+++ b/cmake/SearchForStuff.cmake | ||
@@ -53,10 +53,9 @@ if (NOT PKG_CONFIG_FOUND) | ||
endif() | ||
|
||
if (NOT DEFINED USE_INTERNAL_URDF OR NOT USE_INTERNAL_URDF) | ||
- # check for urdfdom with pkg-config | ||
- pkg_check_modules(URDF urdfdom>=1.0) | ||
+ find_package(urdfdom CONFIG REQUIRED) | ||
|
||
- if (NOT URDF_FOUND) | ||
+ if (NOT urdfdom_FOUND) | ||
if (NOT DEFINED USE_INTERNAL_URDF) | ||
message(STATUS "Couldn't find urdfdom >= 1.0, using internal copy") | ||
set(USE_INTERNAL_URDF true) |
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