summaryrefslogtreecommitdiff
path: root/libs/qtsingleapplication/configure
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2011-11-05 03:24:07 +0200
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2011-11-05 03:24:07 +0200
commit5300c9dd1261a7f4ff8bf5a83608470e4953dd0f (patch)
tree27048ddaaaee5ae3cd6b75658c923f4bc976a327 /libs/qtsingleapplication/configure
parent2f71a1e82c20f4322ea0fb2994da251de58b366f (diff)
this will be paid later
Diffstat (limited to 'libs/qtsingleapplication/configure')
-rwxr-xr-xlibs/qtsingleapplication/configure25
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