10 lines
164 B
Bash
Executable file
10 lines
164 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
cp -r . /tmp/build-tp4-sim
|
|
cd /tmp/build-tp4-sim
|
|
rm -fr /tmp/build-tp4-sim/.git
|
|
|
|
cmake .
|
|
make -j$(nproc)
|