Codebase list ros-urdf / 6944116
New upstream version 1.13.2 Jochen Sprickerhof 3 years ago
8 changed file(s) with 27 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package urdf
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.2 (2020-03-06)
5 -------------------
6 * Windows bringup. (`#31 <https://github.com/ros/urdf/issues/31>`_)
7 * update library install destination (`#28 <https://github.com/ros/urdf/issues/28>`_)
8 * Solved problem when static linking against urdf (`#25 <https://github.com/ros/urdf/issues/25>`_)
9 * unit test: add missing link name (`#26 <https://github.com/ros/urdf/issues/26>`_)
10 * update deprecated macro for MSVC (`#27 <https://github.com/ros/urdf/issues/27>`_)
11 * Contributors: James Xu, Robert Haschke, Sean Yen, ivanpauno
312
413 1.13.1 (2018-04-05)
514 -------------------
0 cmake_minimum_required(VERSION 2.8.3)
0 cmake_minimum_required(VERSION 3.7)
11 project(urdf)
22
33 find_package(Boost REQUIRED thread)
2121 include_directories("${CATKIN_DEVEL_PREFIX}/include")
2222 configure_file(urdfdom_compatibility.h.in "${generated_compat_header}" @ONLY)
2323
24 add_compile_options(-std=c++11)
24 set(CMAKE_CXX_STANDARD 14)
25 set(CMAKE_CXX_STANDARD_REQUIRED ON)
2526
2627 catkin_package(
2728 LIBRARIES ${PROJECT_NAME}
2829 INCLUDE_DIRS include ${CATKIN_DEVEL_PREFIX}/include
29 CATKIN_DEPENDS rosconsole_bridge roscpp
30 CATKIN_DEPENDS pluginlib rosconsole_bridge roscpp
3031 DEPENDS urdfdom_headers urdfdom Boost TinyXML TinyXML2
3132 )
3233 install(FILES ${generated_compat_header} DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION})
6263 catkin_add_gtest(urdfdom_compatibility_test test/urdfdom_compatibility.cpp)
6364 target_link_libraries(urdfdom_compatibility_test ${PROJECT_NAME})
6465
66 if(NOT MSVC)
6567 set_source_files_properties(test/test_model_parser_initxml.cpp PROPERTIES COMPILE_FLAGS -Wno-deprecated-declarations)
68 endif()
6669 catkin_add_gtest(test_model_parser_initxml test/test_model_parser_initxml.cpp)
6770 target_link_libraries(test_model_parser_initxml ${PROJECT_NAME})
6871 endif()
6972
73 # Install library
7074 install(TARGETS ${PROJECT_NAME}
7175 ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
7276 LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
73 RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
77 RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION})
7478
7579 install(DIRECTORY include/${PROJECT_NAME}/
7680 DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION})
5252 #else
5353 #define URDF_EXPORT __declspec(dllexport)
5454 #define URDF_IMPORT __declspec(dllimport)
55 #define URDF_DEPRECATED(msg) __attribute__((deprecated(msg)))
55 #define URDF_DEPRECATED(msg) __declspec(deprecated(msg))
5656 #endif
5757 #ifdef URDF_BUILDING_LIBRARY
5858 #define URDF_PUBLIC URDF_EXPORT
00 <package format="2">
11 <name>urdf</name>
2 <version>1.13.1</version>
2 <version>1.13.2</version>
33 <description>
44 This package contains a C++ parser for the Unified Robot Description
55 Format (URDF), which is an XML format for representing a robot model.
3636 #include "urdf/model.h"
3737
3838 static const std::string good_robot{"<robot name=\"myrobot\">"
39 " <link>"
39 " <link name=\"dummy\">"
4040 " </link>"
4141 "</robot>"};
4242
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package urdf_parser_plugin
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.2 (2020-03-06)
5 -------------------
6 * Bump CMake version to avoid CMP0048 warning (`#32 <https://github.com/ros/urdf/issues/32>`_)
7 * Contributors: Shane Loretz
38
49 1.13.1 (2018-04-05)
510 -------------------
0 cmake_minimum_required(VERSION 2.8.3)
0 cmake_minimum_required(VERSION 3.0.2)
11 project(urdf_parser_plugin)
22
33 find_package(catkin REQUIRED)
00 <package>
11 <name>urdf_parser_plugin</name>
2 <version>1.13.1</version>
2 <version>1.13.2</version>
33 <description>
44 This package contains a C++ base class for URDF parsers.
55 </description>