12 lines
142 B
Bash
Executable File
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"
|