blob: 00e5db21b85d3f27499b578cead7df2aceb0bb21 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
if [ ! -f "lib/criterion/meson.build" ]; then
echo "lib/criterion is missing. It is a git submodule from https://github.com/Snaipe/Criterion at 9c01cbe.";
exit 1;
fi
cd lib/criterion
meson setup build > /dev/null
meson compile -C build > /dev/null
|