mirror of
https://gitlab.com/manzerbredes/loosely-coupled-dss.git
synced 2025-04-05 11:06:25 +02:00
12 lines
223 B
Bash
Executable file
12 lines
223 B
Bash
Executable file
#!/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
|