aerothemeplasma/KWin/kwin_reflect/install.sh
2023-08-25 00:32:11 +02: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