-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pcl] Update to 1.12.0 [rtabmap] Update to 0.20.13 (#18855)
* [pcl] Update patches and portfile for PCL 1.12.0.99 * [pcl] Update pcl to 1.12.0.99 * Update rtabmap to 0.20.13, don't build Qt libs when WITH_QT is OFF * [rtabmap] update to 0.20.13 * Use PCL 1.12.0 instead of 1.12.0.99 * [pcl] Use PCL 1.12.0 * Require pcl[vtk] to build rtabmap * Fix rtabmap hash * Go back to ccc8202, where Linux CI was passing, update rtabmap to require pcl[vtk] * test - go back to pcl 1.20.0.99 * That wasn't it - go back to PCL release commit * Go back to pcl 1.12.0 * Remove libpng patch due to updated VTK per #18855 (comment) * Bump version as per git bot * Fix find dependencies in pcl's dependency * version stuff * version * Replace depreciate functions * version * Add DISABLE_PARALLEL_CONFIGURE to rtabmap * version Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
- Loading branch information
1 parent
13156b1
commit 8acb35e
Showing
19 changed files
with
215 additions
and
132 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,27 +1,27 @@ | ||
From 8a7a883b51e18645974921b1bfe9d3b6ef3c626c Mon Sep 17 00:00:00 2001 | ||
From: Lars Glud <larshg@gmail.com> | ||
Date: Fri, 19 Mar 2021 22:22:57 +0100 | ||
Subject: [PATCH] Add gcc-version-check | ||
From 116e665df611242ea0575a62478c31ec03e78fcc Mon Sep 17 00:00:00 2001 | ||
From: raahilsha-z <raahil.sha@zimaging.io> | ||
Date: Wed, 7 Jul 2021 15:53:49 -0400 | ||
Subject: [PATCH] add gcc version check | ||
|
||
--- | ||
CMakeLists.txt | 4 ++++ | ||
1 file changed, 4 insertions(+) | ||
|
||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index e5aa7f40a..1e346a316 100644 | ||
index 63b38df68..29f79d31b 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -304,6 +304,10 @@ if(NOT PCL_SHARED_LIBS OR ((WIN32 AND NOT MINGW) AND NOT PCL_BUILD_WITH_FLANN_DY | ||
@@ -311,6 +311,10 @@ if(NOT (${FLANN_LIBRARY_TYPE} MATCHES ${PCL_FLANN_REQUIRED_TYPE}) AND NOT (${PCL | ||
message(FATAL_ERROR "Flann was selected with ${PCL_FLANN_REQUIRED_TYPE} but found as ${FLANN_LIBRARY_TYPE}") | ||
endif() | ||
find_package(FLANN 1.7.0 REQUIRED) | ||
|
||
+if(UNIX AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 6.0) | ||
+ set (CMAKE_CXX_STANDARD 17) | ||
+endif() | ||
+ | ||
# libusb-1.0 | ||
# libusb | ||
option(WITH_LIBUSB "Build USB RGBD-Camera drivers" TRUE) | ||
if(WITH_LIBUSB) | ||
-- | ||
2.29.2.windows.2 | ||
2.32.0.windows.1 | ||
|
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,20 @@ | ||
diff --git a/cmake/pcl_options.cmake b/cmake/pcl_options.cmake | ||
index 6570d75..1d9b0d8 100644 | ||
--- a/cmake/pcl_options.cmake | ||
+++ b/cmake/pcl_options.cmake | ||
@@ -7,14 +7,13 @@ if(PCL_SHARED_LIBS) | ||
set(PCL_LIB_SUFFIX ${CMAKE_SHARED_LIBRARY_SUFFIX}) | ||
set(PCL_LIB_TYPE "SHARED") | ||
# set(CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_SHARED_LIBRARY_SUFFIX}) | ||
- if(WIN32) | ||
+ if(0) | ||
set(CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_IMPORT_LIBRARY_SUFFIX}) | ||
endif() | ||
else() | ||
set(PCL_LIB_PREFIX ${CMAKE_STATIC_LIBRARY_PREFIX}) | ||
set(PCL_LIB_SUFFIX ${CMAKE_STATIC_LIBRARY_SUFFIX}) | ||
set(PCL_LIB_TYPE "STATIC") | ||
- set(CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_STATIC_LIBRARY_SUFFIX}) | ||
endif() | ||
mark_as_advanced(PCL_SHARED_LIBS) | ||
|
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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.