Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / scout / standard_ros_compile @ 6cee3520

History | View | Annotate | Download (299 Bytes)

1
#!/bin/bash
2

    
3
# Compiles Scout OS with ROS for standard
4
# use with the GUI program
5
# If this command successfully compiles ROS
6
# run scout_client to open the python GUI
7

    
8
cd ~/fuerte_workspace/scoutos/scout
9
cd libscout
10
cmake .
11
python generate_behavior_lists.py
12
rosmake
13
cd ../scoutsim
14
cmake .
15
rosmake
16