mirror of
https://github.com/debauchee/barrier.git
synced 2025-08-01 23:59:38 +02:00
8 lines
189 B
Bash
Executable file
8 lines
189 B
Bash
Executable file
#!/bin/sh
|
|
cd "$(dirname $0)" || exit 1
|
|
rm -rf build
|
|
mkdir build || exit 1
|
|
cd build || exit 1
|
|
cmake -D CMAKE_BUILD_TYPE=Debug .. || exit 1
|
|
make || exit 1
|
|
echo "Build completed successfully"
|