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