aerothemeplasma/KWin/kwin_reflect/install
2023-08-25 00:32:11 +02:00

13 lines
172 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