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