temp-monitor/build.sh
2026-01-14 19:48:00 +01:00

12 lines
142 B
Bash
Executable File

#!/bin/bash
# Create build directory
mkdir -p build
cd build
# Build project
cmake ..
make
echo "Build complete! Run with: ./temp-monitor"