9 lines
125 B
Plaintext
9 lines
125 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
clear
|
||
|
echo "Running CMake..."
|
||
|
cmake -S . -B build
|
||
|
cmake --build build
|
||
|
if [ $? -ne 0 ]; then
|
||
|
exit 1
|
||
|
fi
|