Add dependencies

This commit is contained in:
Loic Guegan 2021-05-05 17:01:13 +02:00
parent f0208cbc86
commit e8ad4ccb09
3 changed files with 17 additions and 1 deletions

12
libs/setup.sh Executable file
View file

@ -0,0 +1,12 @@
#!/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