Imported Upstream version 0.9.0
[deb_shairplay.git] / AirTV-Qt / qtsingleapplication / configure
CommitLineData
15c988f7
JB
1#!/bin/sh
2
3if [ "x$1" != "x" -a "x$1" != "x-library" ]; then
4 echo "Usage: $0 [-library]"
5 echo
6 echo "-library: Build the component as a dynamic library (DLL). Default is to"
7 echo " include the component source code directly in the application."
8 echo
9 exit 0
10fi
11
12rm -f config.pri
13if [ "x$1" = "x-library" ]; then
14 echo "Configuring to build this component as a dynamic library."
15 echo "SOLUTIONS_LIBRARY = yes" > config.pri
16fi
17
18echo
19echo "This component is now configured."
20echo
21echo "To build the component library (if requested) and example(s),"
22echo "run qmake and your make command."
23echo
24echo "To remove or reconfigure, run make distclean."
25echo