mirror of
https://github.com/MatMoul/plasma-containmentactions-customdesktopmenu.git
synced 2024-12-23 22:46:11 +00:00
18 lines
251 B
Bash
18 lines
251 B
Bash
|
echo "cmake prepare ..."
|
||
|
if cmake --fresh -B ../_build .; then
|
||
|
echo ""
|
||
|
echo "begin make ..."
|
||
|
cd ../_build
|
||
|
make clean
|
||
|
if make; then
|
||
|
echo ""
|
||
|
ls -lah bin/plasma/containmentactions/
|
||
|
else
|
||
|
exit 1
|
||
|
fi
|
||
|
else
|
||
|
echo ""
|
||
|
echo "cmake error"
|
||
|
exit 1
|
||
|
fi
|