mirror of
https://gitlab.com/manzerbredes/loosely-coupled-dss.git
synced 2025-04-05 19:16:26 +02:00
Add dependencies
This commit is contained in:
parent
f0208cbc86
commit
e8ad4ccb09
3 changed files with 17 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
simulator
|
simulator
|
||||||
libs
|
libs/simgrid
|
||||||
|
libs/rapidjson
|
||||||
compile_commands.json
|
compile_commands.json
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Impact of loosely coupled data dissemination policies for resource challenged environements
|
||||||
|
|
||||||
|
TODO
|
12
libs/setup.sh
Executable file
12
libs/setup.sh
Executable 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
|
Loading…
Add table
Reference in a new issue