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