diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-11-05 03:24:07 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-11-05 03:24:07 +0200 |
commit | 5300c9dd1261a7f4ff8bf5a83608470e4953dd0f (patch) | |
tree | 27048ddaaaee5ae3cd6b75658c923f4bc976a327 /libs/qtsingleapplication/configure | |
parent | 2f71a1e82c20f4322ea0fb2994da251de58b366f (diff) |
this will be paid later
Diffstat (limited to 'libs/qtsingleapplication/configure')
-rwxr-xr-x | libs/qtsingleapplication/configure | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libs/qtsingleapplication/configure b/libs/qtsingleapplication/configure new file mode 100755 index 0000000..3c4edff --- /dev/null +++ b/libs/qtsingleapplication/configure @@ -0,0 +1,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 |