Small cleanups. (#241)
parent
9ccdfce2e4
commit
6d61394c3c
|
@ -176,8 +176,8 @@ install(TARGETS ${PROJECT_NAME}
|
|||
)
|
||||
|
||||
# Install source headers.
|
||||
file(GLOB_RECURSE hdrs "*.h")
|
||||
foreach(HDR ${hdrs})
|
||||
file(GLOB_RECURSE HDRS "*.h")
|
||||
foreach(HDR ${HDRS})
|
||||
file(RELATIVE_PATH REL_FIL ${CMAKE_SOURCE_DIR} ${HDR})
|
||||
get_filename_component(INSTALL_DIR ${REL_FIL} DIRECTORY)
|
||||
install(
|
||||
|
|
|
@ -47,8 +47,10 @@
|
|||
<depend>message_runtime</depend>
|
||||
<depend>nav_msgs</depend>
|
||||
<depend>pcl_conversions</depend>
|
||||
<depend>robot_state_publisher</depend>
|
||||
<depend>rosbag</depend>
|
||||
<depend>roscpp</depend>
|
||||
<depend>roslaunch</depend>
|
||||
<depend>roslib</depend>
|
||||
<depend>sensor_msgs</depend>
|
||||
<depend>std_msgs</depend>
|
||||
|
|
|
@ -22,8 +22,8 @@ set -o verbose
|
|||
cd catkin_ws
|
||||
|
||||
# Install Ninja.
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y ninja-build
|
||||
apt-get update
|
||||
apt-get install -y ninja-build
|
||||
|
||||
# Install rosdep dependencies.
|
||||
rosdep update
|
||||
|
|
Loading…
Reference in New Issue