mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
8 lines
106 B
Bash
8 lines
106 B
Bash
|
#!/bin/bash
|
||
|
rm -rf build
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
||
|
make
|
||
|
sudo make install
|