summaryrefslogtreecommitdiff
path: root/configure
blob: a98a8a2a8dc63ab7a8ecac6c9352daab1ff298ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

DIR=builddir

echo "Using './$DIR' as the directory for build output"
echo

if [ $# -ne 0 ]; then
	meson configure $DIR
	echo
	echo 'Configuration can be changed like this:'
	echo "  meson configure $DIR -Dprefix=/usr"
	echo '  More info: http://mesonbuild.com/Configuring-a-build-directory.html'
	# See also: http://mesonbuild.com/howtox.html
fi

meson $DIR