ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
If you are talking about compiler warnings, you can pass arguments to cmake
or make
via catkin_make
:
$ catkin_make --cmake-args -DCXX_FLAGS="-Wall"
Should enable all the warnings, for example.
2 | No.2 Revision |
If you are talking about compiler warnings, you can pass arguments to cmake
or make
via catkin_make
:
$ catkin_make --cmake-args -DCXX_FLAGS="-Wall"
-DCMAKE_CXX_FLAGS="-Wall"
Should enable all the warnings, for example.