memgraph/init
Marko Budiselic b834cdc94a memgraph coverage (lcov setup in progress...)
Summary: first version of coverage (will be polished)

Reviewers: dgleich, mferencevic, florijan, teon.banek

Reviewed By: dgleich

Subscribers: pullbot, buda

Differential Revision: https://phabricator.memgraph.io/D76
2017-03-07 18:27:03 +01:00

19 lines
364 B
Bash
Executable File

#!/bin/bash
echo "START"
# install all dependencies on debian based operating systems
for pkg in wget git cmake uuid-dev clang-3.8 llvm-3.8 clang-format-3.8 doxygen; do
dpkg -s $pkg 2>/dev/null >/dev/null || sudo apt-get -y install $pkg
done
# create a default build directory
mkdir -p ./build
# setup libs (download)
cd libs
./setup.sh
cd ..
echo "DONE"