mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
12 lines
175 B
Bash
Executable file
12 lines
175 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Building decoration"
|
|
echo
|
|
|
|
cd breeze || exit 1
|
|
|
|
rm -rf build
|
|
mkdir -p build
|
|
cmake -B build -DCMAKE_INSTALL_PREFIX=/usr .
|
|
make -C build && echo "Done"
|
|
cd ..
|