Codebase list ros-eigen-stl-containers / 232ab34
Merge tag 'upstream/0.1.6' Upstream version 0.1.6 Jochen Sprickerhof 7 years ago
3 changed file(s) with 18 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package eigen_stl_containers
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 0.1.6 (2016-09-28)
5 ------------------
6 * Fixed exporting of eigen3 depends (`#6 <https://github.com/ros/eigen_stl_containers/issues/6>`_)
7 * Contributors: Kei Okada
38
49 0.1.5 (2016-03-23)
510 ------------------
11 project(eigen_stl_containers)
22
33 find_package(catkin REQUIRED)
4
5 # we don't build anything here, but in order to export the right
6 # build flags in catkin_package(), we still have to find Eigen3 here
7 find_package(Eigen3 REQUIRED)
8
9 # eigen 3.2 (wily) only provdies EIGEN3_INCLUDE_DIR, not EIGEN3_INCLUDE_DIRS
10 if(NOT EIGEN3_INCLUDE_DIRS)
11 set(EIGEN3_INCLUDE_DIRS ${EIGEN3_INCLUDE_DIR})
12 endif()
13
414 catkin_package(
515 INCLUDE_DIRS include
6 DEPENDS Eigen)
16 DEPENDS EIGEN3)
717
818 install(DIRECTORY include/
919 DESTINATION include
00 <package>
11 <name>eigen_stl_containers</name>
2 <version>0.1.5</version>
2 <version>0.1.6</version>
33
44 <description>This package provides a set of typedef's that allow
55 using Eigen datatypes in STL containers</description>
1313
1414 <buildtool_depend>catkin</buildtool_depend>
1515
16 <build_depend>eigen</build_depend>
1617 <run_depend>eigen</run_depend>
1718
1819 </package>