remove unnecessary build stuff form CMake
This commit is contained in:
parent
172ee31b57
commit
c399f08f55
|
@ -14,7 +14,6 @@
|
|||
<url>http://ros.org/wiki/kdl_parser</url>
|
||||
|
||||
<depend package="kdl" />
|
||||
<depend package="tinyxml" />
|
||||
<depend package="urdf" />
|
||||
<depend package="roscpp" />
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
<review status="Doc reviewed" notes=""/>
|
||||
<url>http://ros.org/wiki/urdf</url>
|
||||
|
||||
<depend package="tinyxml" />
|
||||
<depend package="roscpp" />
|
||||
<depend package="colladadom" />
|
||||
<depend package="urdf_parser" />
|
||||
|
|
|
@ -7,21 +7,13 @@ include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake)
|
|||
# Release : w/o debug symbols, w/ optimization
|
||||
# RelWithDebInfo : w/ debug symbols, w/ optimization
|
||||
# MinSizeRel : w/o debug symbols, w/ optimization, stripped binaries
|
||||
set(ROS_BUILD_TYPE Debug)
|
||||
#set(ROS_BUILD_TYPE RelWithDebInfo)
|
||||
|
||||
rosbuild_init()
|
||||
#rosbuild_init()
|
||||
|
||||
#set the default path for built executables to the "bin" directory
|
||||
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
|
||||
#set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
|
||||
#set the default path for built libraries to the "lib" directory
|
||||
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
|
||||
|
||||
#uncomment if you have defined messages
|
||||
#rosbuild_genmsg()
|
||||
#rosbuild_gensrv()
|
||||
|
||||
#common commands for building c++ executables and libraries
|
||||
#target_link_libraries(${PROJECT_NAME} another_library)
|
||||
rosbuild_add_boost_directories()
|
||||
#rosbuild_link_boost(${PROJECT_NAME} thread)
|
||||
#set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
|
||||
#rosbuild_add_boost_directories()
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <tinyxml/tinyxml.h>
|
||||
#include <tinyxml.h>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
#include "pose.h"
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <tinyxml/tinyxml.h>
|
||||
#include <tinyxml.h>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
#include "joint.h"
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
#include <boost/algorithm/string.hpp>
|
||||
#include <boost/lexical_cast.hpp>
|
||||
|
||||
#include <tinyxml/tinyxml.h> // FIXME: remove parser from here
|
||||
#include <tinyxml.h> // FIXME: remove parser from here
|
||||
#include <ros/ros.h>
|
||||
|
||||
namespace urdf{
|
||||
|
|
|
@ -7,7 +7,9 @@
|
|||
<license>BSD</license>
|
||||
<review status="Doc reviewed" notes=""/>
|
||||
<url>http://ros.org/wiki/urdf_interface</url>
|
||||
<depend package="tinyxml" />
|
||||
|
||||
<rosdep name="tinyxml" />
|
||||
|
||||
<export>
|
||||
<cpp cflags="-I${prefix}/include"/>
|
||||
</export>
|
||||
|
|
|
@ -23,7 +23,7 @@ rosbuild_gensrv()
|
|||
|
||||
#common commands for building c++ executables and libraries
|
||||
rosbuild_add_library(${PROJECT_NAME} src/link.cpp src/joint.cpp src/urdf_parser.cpp)
|
||||
#target_link_libraries(${PROJECT_NAME} another_library)
|
||||
target_link_libraries(${PROJECT_NAME} tinyxml)
|
||||
rosbuild_add_boost_directories()
|
||||
#rosbuild_link_boost(${PROJECT_NAME} thread)
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
#include <string>
|
||||
#include <map>
|
||||
#include <tinyxml/tinyxml.h>
|
||||
#include <tinyxml.h>
|
||||
#include <boost/function.hpp>
|
||||
#include <urdf_interface/model.h>
|
||||
|
||||
|
|
|
@ -12,7 +12,8 @@
|
|||
<review status="Doc reviewed" notes=""/>
|
||||
<url>http://ros.org/wiki/urdf_parser</url>
|
||||
|
||||
<depend package="tinyxml" />
|
||||
<rosdep name="tinyxml" />
|
||||
|
||||
<depend package="roscpp" /> <!-- Only to call ROS_ERROR -->
|
||||
<depend package="urdf_interface" />
|
||||
|
||||
|
|
Loading…
Reference in New Issue