mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
12 lines
111 B
Bash
Executable File
12 lines
111 B
Bash
Executable File
ACTION=$1
|
|
|
|
if [ "$ACTION" = "clean" ]; then
|
|
rm -rf build
|
|
exit 0
|
|
fi
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|