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

3
.gitignore vendored
View file

@ -1,3 +1,4 @@
simulator
libs
libs/simgrid
libs/rapidjson
compile_commands.json

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# Impact of loosely coupled data dissemination policies for resource challenged environements
TODO

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