gestionale/script/build

11 lines
150 B
Plaintext
Raw Normal View History

2023-01-08 21:05:07 +00:00
#!/bin/bash
REPODIR=$(realpath $(dirname "$0")/..)
BUILDIR="$REPODIR"/build
mkdir -p "$BUILDIR"
cmake -B "$BUILDIR"
make -j$(nproc) -C "$BUILDIR"