summaryrefslogtreecommitdiffstats
path: root/qtservice/configure
blob: 3c4edfff2b1f282066e8f767c140775e475efe2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

if [ "x$1" != "x" -a "x$1" != "x-library" ]; then
    echo "Usage: $0 [-library]"
    echo 
    echo "-library: Build the component as a dynamic library (DLL). Default is to"
    echo "          include the component source code directly in the application."
    echo 
    exit 0
fi

rm -f config.pri
if [ "x$1" = "x-library" ]; then
    echo "Configuring to build this component as a dynamic library."
    echo "SOLUTIONS_LIBRARY = yes" > config.pri
fi

echo
echo "This component is now configured."
echo
echo "To build the component library (if requested) and example(s),"
echo "run qmake and your make command."
echo
echo "To remove or reconfigure, run make distclean."
echo