#!/bin/sh
# Copyright 2016 Ghislain Antony Vaillant

set -e

# Presence of $ADTTMP implies that someone will handle cleanup for us, so we
# can avoid duplicating the effort (signal handling, etc.) here.
if [ -z "$ADTTMP" ]
then
	echo "Required envvar \"$ADTTMP\"is not set" >&2
	exit 1
fi

# Copy example source code.
cp -a /usr/share/doc/libismrmrd-doc/examples/c/* "$ADTTMP"
cd "$ADTTMP"

# Configure and build.
mkdir build && cd build
ISMRMRD_HOME=/usr cmake ./..
echo "configure: OK"
make -j$(nproc)
echo "build: OK"
./ismrmrd_c_example 2>&1
echo "run: OK"
