File: checksum.sh

package info (click to toggle)
libdeflate 1.23-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,072 kB
  • sloc: ansic: 11,716; sh: 1,388; python: 169; makefile: 31
file content (10 lines) | stat: -rwxr-xr-x 245 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

set -e

SCRIPTDIR="$(dirname "$(realpath "$0")")"
BUILDDIR="$SCRIPTDIR/../build"

"$SCRIPTDIR"/cmake-helper.sh -DLIBDEFLATE_BUILD_TESTS=1 -G Ninja > /dev/null
ninja -C "$BUILDDIR" --quiet checksum
"$BUILDDIR"/programs/checksum "$@"