mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
11 lines
227 B
Bash
11 lines
227 B
Bash
![]() |
#!/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
|