Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{rolling} Make perception compile #1263

Open
wants to merge 3 commits into
base: master-next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
From aab625410af5d0b52bc6f5aff30cd60c2026ba3f Mon Sep 17 00:00:00 2001
From: Stephen Street <[email protected]>
Date: Fri, 22 Nov 2024 15:18:54 -0800
Subject: [PATCH] Remove unneeded Eigen3_INCLUDE_DIRS

Upstream-Status: Pending

Signed-off-by: Stephen Street <[email protected]>
---
CMakeLists.txt | 1 -
1 file changed, 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7cfcd03..cad8094 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,7 +22,6 @@ target_include_directories(laser_geometry
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include/${PROJECT_NAME}>
- ${Eigen3_INCLUDE_DIRS}
)
target_link_libraries(laser_geometry PUBLIC
${sensor_msgs_TARGETS}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"

SRC_URI += "file://0001-Remove-unneeded-Eigen3_INCLUDE_DIRS.patch"
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

# QA Issue: File /opt/ros/rolling/share/pcl_ros/cmake/export_pcl_rosExport.cmake in package pcl-ros-dev contains reference to TMPDIR [buildpaths]
do_install:append() {
sed -i -e "s#${RECIPE_SYSROOT}##g" ${D}${ros_datadir}/pcl_ros/cmake/export_pcl_rosExport.cmake
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Upstream-Status: Pending

Index: git/CMakeLists.txt
===================================================================
--- git.orig/CMakeLists.txt
Expand Down