Files
aixianling 5c9f1dae4a init
2025-01-09 17:45:40 +08:00

14 lines
217 B
Bash

#! /bin/bash
if [ -n "$1" ]; then
BuiltType=$1
else
BuiltType=Release
fi
rm -rf CMakeCache.txt cmake_install.cmake CMakeFiles/
cmake -DCMAKE_BUILD_TYPE=${BuiltType} ./
make -j4
rm -rf CMakeCache.txt CMakeFiles/