9 lines
142 B
Bash
Executable File
9 lines
142 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Configures CMake
|
|
cmake -S . -B build
|
|
# Compiles the program
|
|
cmake --build build
|
|
# Runs the program
|
|
./build/panic |