Bash程序  |  6行  |  87 B

#!/bin/sh
if [ ! -d "build" ]; then
    mkdir build
fi
cd build && cmake .. && make $*