https://github.com/lijieumn/argus-distribution
Raw File
Tip revision: 866bd38a0b1caa7560e66ecae5e19b65b49558a5 authored by Jie Li on 04 August 2019, 17:48:21 UTC
Merge pull request #4 from AymericFerreira/master
Tip revision: 866bd38
install.sh
#! /bin/bash
# Tested on fresh install of Ubuntu 18.04 LTS
# If you want parallel compilation, run `MAKEFLAGS="-j$(nproc)" ./install.sh`

echo 'Installing dependencies via apt. You may be asked to enter your password.'
sudo apt-get -qy install git build-essential cmake libboost-dev libboost-filesystem-dev libboost-serialization-dev libeigen3-dev libglew-dev libglfw3-dev libpng-dev python
git submodule update --init --recursive
mkdir -p build
pushd build
cmake ..
make
popd
back to top