Skip to content

Commit

Permalink
Merge pull request #77 from mdhorn/resubmit-pr-72
Browse files Browse the repository at this point in the history
Resubmit pr 72
  • Loading branch information
mdhorn authored Jul 28, 2016
2 parents 0f30725 + 32a337f commit 2e5fc77
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 19 deletions.
16 changes: 9 additions & 7 deletions realsense_camera/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -96,26 +96,28 @@ add_dependencies(tests_rgbd_topics ${PROJECT_NAME}_generate_messages_cpp)
add_dependencies(tests_rgbd_topics ${catkin_EXPORTED_TARGETS})

# Install nodelet library
install(TARGETS ${PROJECT_NAME}_nodelet LIBRARY
DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
install(TARGETS ${PROJECT_NAME}_nodelet
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)

# Install header files
install(DIRECTORY include/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/include
install(DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
)

# Install launch files
install(DIRECTORY launch/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch
)

# Install rviz files
install(DIRECTORY rviz/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/rviz
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/rviz
)

# Install xml files
install(FILES nodelet_plugins.xml
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
#include <realsense_camera/cameraConfiguration.h>
#include <pluginlib/class_list_macros.h>
#include <tf/transform_broadcaster.h>
#include "constants.h"
#include <realsense_camera/constants.h>

namespace realsense_camera
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@

#include <dynamic_reconfigure/server.h>

#include "realsense_camera/f200_paramsConfig.h"
#include "base_nodelet.h"
#include <realsense_camera/f200_paramsConfig.h>
#include <realsense_camera/base_nodelet.h>

namespace realsense_camera
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@

#include <dynamic_reconfigure/server.h>

#include "realsense_camera/r200_paramsConfig.h"
#include "base_nodelet.h"
#include <realsense_camera/r200_paramsConfig.h>
#include <realsense_camera/base_nodelet.h>

namespace realsense_camera
{
Expand Down
2 changes: 1 addition & 1 deletion realsense_camera/src/base_nodelet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************/

#include "base_nodelet.h"
#include <realsense_camera/base_nodelet.h>

using namespace cv;
using namespace std;
Expand Down
2 changes: 1 addition & 1 deletion realsense_camera/src/f200_nodelet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************/

#include "f200_nodelet.h"
#include <realsense_camera/f200_nodelet.h>

PLUGINLIB_EXPORT_CLASS (realsense_camera::F200Nodelet, nodelet::Nodelet)

Expand Down
2 changes: 1 addition & 1 deletion realsense_camera/src/r200_nodelet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************/

#include "r200_nodelet.h"
#include <realsense_camera/r200_nodelet.h>

PLUGINLIB_EXPORT_CLASS (realsense_camera::R200Nodelet, nodelet::Nodelet)

Expand Down
2 changes: 1 addition & 1 deletion realsense_camera/test/camera_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************/
#include "gtest/gtest.h"
#include <gtest/gtest.h>
#include "camera_core.h"

using namespace std;
Expand Down
6 changes: 3 additions & 3 deletions realsense_camera/test/camera_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@
#include <image_transport/image_transport.h>

#include <camera_info_manager/camera_info_manager.h>
#include "std_msgs/String.h"
#include <std_msgs/String.h>
#include <ros/ros.h>
#include <pcl/conversions.h>
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>
#include <pcl/PCLPointCloud2.h>
#include <pcl_conversions/pcl_conversions.h>
#include "std_msgs/Float32MultiArray.h"
#include <std_msgs/Float32MultiArray.h>
#include <cv_bridge/cv_bridge.h>
#include <realsense_camera/cameraConfiguration.h>
#include <tf/transform_listener.h>
#include <librealsense/rs.h>
#include "constants.h"
#include <realsense_camera/constants.h>

using namespace realsense_camera;

Expand Down

0 comments on commit 2e5fc77

Please sign in to comment.