fix case of Eigen find_package name

This commit is contained in:
Dirk Thomas 2013-09-13 14:20:11 -07:00
parent f89ddf0b01
commit b85cf586c6

View File

@ -6,12 +6,12 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
find_package(Boost REQUIRED COMPONENTS thread) find_package(Boost REQUIRED COMPONENTS thread)
find_package(EIGEN REQUIRED) find_package(Eigen REQUIRED)
catkin_package( catkin_package(
INCLUDE_DIRS include INCLUDE_DIRS include
LIBRARIES laser_geometry LIBRARIES laser_geometry
DEPENDS Boost EIGEN DEPENDS Boost Eigen
) )
include_directories(SYSTEM ${Boost_INCLUDE_DIRS} ${EIGEN_INCLUDE_DIRS}) include_directories(SYSTEM ${Boost_INCLUDE_DIRS} ${EIGEN_INCLUDE_DIRS})