forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-08-21 fc437ccf3419c424092701f3d883215fa4552a8b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
From 2099e47ea4a5f7800b294f7358645464e4877566 Mon Sep 17 00:00:00 2001
From: "Zain.Wang" <wzz@rock-chips.com>
Date: Mon, 17 Sep 2018 18:05:56 +0800
Subject: [PATCH] remove EIGEN3 from dependencies
 
EIGEN3 only support include file, just config EIGEN3_INCLUDE_DIRS can
work as well.
 
Signed-off-by: Zain.Wang <wzz@rock-chips.com>
---
 tf_conversions/CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 
diff --git a/tf_conversions/CMakeLists.txt b/tf_conversions/CMakeLists.txt
index 543bbdb..827d0b7 100644
--- a/tf_conversions/CMakeLists.txt
+++ b/tf_conversions/CMakeLists.txt
@@ -3,14 +3,14 @@ project(tf_conversions)
 
 find_package(orocos_kdl REQUIRED)
 find_package(catkin REQUIRED cmake_modules geometry_msgs kdl_conversions tf)
-find_package(Eigen3 REQUIRED)
+#find_package(Eigen3 REQUIRED)
 
 catkin_python_setup()
 
 catkin_package(
   INCLUDE_DIRS include
   LIBRARIES ${PROJECT_NAME}
-  DEPENDS EIGEN3 orocos_kdl
+  DEPENDS orocos_kdl # EIGEN3
   CATKIN_DEPENDS geometry_msgs kdl_conversions tf
 )
 
-- 
2.7.4