mirror of
https://github.com/MatMoul/plasma-containmentactions-customdesktopmenu.git
synced 2024-12-23 14:36:12 +00:00
18 lines
251 B
Bash
Executable File
18 lines
251 B
Bash
Executable File
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
|