mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-25 19:22:31 +03:00
9 lines
189 B
Bash
Executable File
9 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"
|