loosely-coupled-dss/libs/setup.sh
2021-05-05 17:01:13 +02:00

12 lines
223 B
Bash
Executable file

#!/usr/bin/env bash
set -e
[ ! -e "simgrid" ] && git clone https://framagit.org/simgrid/simgrid
[ ! -e "rapidjson"] && git clone https://github.com/Tencent/rapidjson
cd simgrid
mkdir -p build
cd build
cmake ../
make -j4