mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
10 lines
227 B
Bash
Executable file
10 lines
227 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
# not for production use
|
|
|
|
sourcedir=$(pwd)
|
|
cd ~/bin/kaffeine-build
|
|
rm -fr install
|
|
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=~/bin/kaffeine-build/install -DSTRICT_BUILD=1 . $sourcedir
|
|
make install
|