Skip to content
Snippets Groups Projects
build.sh 874 B
Newer Older
# set link for config files if not already existing
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
DEST=$DIR/CarConfig
LINK=$HOME/CarConfig
Hoop77's avatar
-  
Hoop77 committed
if [ ! -e $LINK ]; then
  echo "ln -s $DEST $HOME"
  ln -s $DEST $HOME
fi

# install NetworkingLib
Hoop77's avatar
Hoop77 committed
cd catkin_ws/src/NetworkingLib/
mkdir cmake-build-debug
cd cmake-build-debug
cmake ..
# install PlatoonProtocolLib
cd ../../PlatoonProtocolLib/
mkdir cmake-build-debug
cd cmake-build-debug
cmake ..
# install PC2CarLib
cd ../../PC2CarLib/
mkdir cmake-build-debug
cd cmake-build-debug
cmake ..
# build MessageLib scripts
cd ../../MessageLib/
mkdir cmake-build-debug
cd cmake-build-debug
cmake ..
# build VeloxProtocolLib
cd ../../VeloxProtocolLib/
mkdir cmake-build-debug
cd cmake-build-debug
cmake ..
# build ROS stuff
Hoop77's avatar
Hoop77 committed
cd ../../../
catkin_make