ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

HZhu's profile - activity

2014-07-10 10:13:21 -0500 received badge  Taxonomist
2013-01-05 00:05:50 -0500 received badge  Famous Question (source)
2013-01-05 00:05:50 -0500 received badge  Popular Question (source)
2013-01-05 00:05:50 -0500 received badge  Notable Question (source)
2012-11-06 00:47:36 -0500 received badge  Famous Question (source)
2012-08-07 14:46:36 -0500 received badge  Notable Question (source)
2012-04-13 04:35:43 -0500 received badge  Popular Question (source)
2011-07-24 18:01:17 -0500 marked best answer how to specify gcc options while building ROS programs

I think this has been answered here already.

The ROS build is based on CMake. You can find a basic tutorial on CMake here.

2011-07-12 17:03:45 -0500 marked best answer How to build ROS nodes with other libraries?

I can share you one example:glut

CMakeLists.txt

 cmake_minimum_required(VERSION 2.4.6)

 include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake)



 # Set the build type.  Options are:

 #  Coverage       : w/ debug symbols, w/o optimization, w/ code-coverage

 #  Debug          : w/ debug symbols, w/o optimization

 #  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 RelWithDebInfo)



 rosbuild_init()



 #set the default path for built executables to the "bin" directory

 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()

 #uncomment if you have defined services

 #rosbuild_gensrv()



 #common commands for building c++ executables and libraries

 #rosbuild_add_library(${PROJECT_NAME} src/example.cpp)

 #target_link_libraries(${PROJECT_NAME} another_library)

 #rosbuild_add_boost_directories()

 #rosbuild_link_boost(${PROJECT_NAME} thread)

 #rosbuild_add_executable(example examples/example.cpp)

 #target_link_libraries(example ${PROJECT_NAME})

 rosbuild_add_executable(glut_test src/glut_test.cpp)

 target_link_libraries(glut_test /usr/lib/libglut.a)

 target_link_libraries(glut_test /usr/lib/libglut.so)

glut_test.cpp

 #include <GL/glut.h>



 void renderScene(void) {    

     glClear(GL_COLOR_BUFFER_BIT);

     glBegin(GL_TRIANGLES);

     glVertex3f(-0.5,-0.5,0.0);

     glVertex3f(0.5,0.0,0.0);

     glVertex3f(0.0,0.5,0.0);

     glEnd();

     glFlush();

 }



 int main(int argc, char **argv) {

     glutInit(&argc, argv);

     glutInitDisplayMode(GLUT_DEPTH | GLUT_SINGLE | GLUT_RGBA);

     glutInitWindowPosition(100,100);

     glutInitWindowSize(320,320);

     glutCreateWindow("3D Tech- GLUT Tutorial");

     glutDisplayFunc(renderScene);

     glutMainLoop();

     return 0;

 }
2011-07-10 17:41:47 -0500 received badge  Editor (source)
2011-07-10 16:19:18 -0500 asked a question how to specify gcc options while building ROS programs

Hi All, When I compile my (non-ROS) programs with the third party libraries, I need to provide gcc with some options as well as paths to include head files and libraries. Usually this is how the gcc command looks like:

gcc -Imy_include_files_path -SOME_OPTIONS -Lmy_library_files_path source.c

Now I want to use these third party libraries with ROS, how can I specify those options in ROS?

With Many Thanks,

2011-07-10 16:08:39 -0500 commented answer How to build ROS nodes with other libraries?
Thanks a lot.
2011-07-10 09:22:26 -0500 asked a question How to build ROS nodes with other libraries?

Hi All,

If I want to compile and build an ROS node with some other third party libraries, how & where should I modify the ROS Makefile so those third party libraries can be linked into the ROS node? Are there related online documents to which I can refer?

With Many Thanks!