auapp/build.sh
2025-06-10 15:49:49 +08:00

12 lines
94 B
Bash
Executable File

#!/bin/bash
if [ -d out ]; then
rm -rf out
fi
mkdir out
cd out
cmake ..
make -j$(nproc)