loosely-coupled-dss/libs/setup.sh

13 lines
223 B
Bash
Raw Normal View History

2021-05-05 17:01:13 +02:00
#!/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