Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / standard_ros_compile @ a4fec3f5

History | View | Annotate | Download (304 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
cd ~/fuerte_workspace/scoutos/scout
8
cmake .
9
cd libscout
10
cmake .
11
python generate_behavior_lists.py
12
cd ../scoutsim
13
cmake .
14
cd ..
15
rosmake
16