1
0
plasma-containmentactions-c.../src/build.sh
2024-03-06 22:05:01 +01:00

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