diff --git a/.gitignore b/.gitignore index 29951b5..877fee3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ simulator -libs +libs/simgrid +libs/rapidjson compile_commands.json \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..6e90db6 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Impact of loosely coupled data dissemination policies for resource challenged environements + +TODO \ No newline at end of file diff --git a/libs/setup.sh b/libs/setup.sh new file mode 100755 index 0000000..395a11e --- /dev/null +++ b/libs/setup.sh @@ -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