temp-monitor/build.sh
2026-01-09 22:04:23 +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: ./nvme-monitor"