1
0
plasma-containmentactions-c.../src/build.sh

18 lines
251 B
Bash
Raw Normal View History

2024-03-06 21:05:01 +00:00
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