ContractNotifier/buildRelease.sh

7 lines
89 B
Bash
Executable File

#!/bin/bash
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j${1:1}
cd ..