aerothemeplasma/KWin/kwin_fixblur/install.sh
2024-02-01 01:16:09 +01:00

12 lines
171 B
Bash
Executable file

#!/bin/sh
ORIGINAL_DIR=$(pwd)
rm -rf build
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
make
sudo make install
cd $ORIGINAL_DIR