summaryrefslogtreecommitdiffstats
path: root/qwt/qwtconfig.pri
diff options
context:
space:
mode:
authororchidman <lesibel@free.fr>2012-08-03 12:47:29 +0200
committerpiernov <piernov@piernov.org>2012-08-07 23:54:56 +0200
commit9546a568582c34df95238d6751a9abd93c575cae (patch)
tree6942d852df4d85fe860e6224b733b48581ae2bec /qwt/qwtconfig.pri
parent1bde4f04b2ef8742ca8b873a6554bef43c85af72 (diff)
downloadnutyx-extra-9546a568582c34df95238d6751a9abd93c575cae.tar.gz
nutyx-extra-9546a568582c34df95238d6751a9abd93c575cae.tar.bz2
nutyx-extra-9546a568582c34df95238d6751a9abd93c575cae.tar.xz
nutyx-extra-9546a568582c34df95238d6751a9abd93c575cae.zip
qwt 5.2.2-1
(cherry picked from commit 972fd0d0ab35da465568aa4ed2d8fdbf8f3cd6c5)
Diffstat (limited to 'qwt/qwtconfig.pri')
-rw-r--r--qwt/qwtconfig.pri85
1 files changed, 85 insertions, 0 deletions
diff --git a/qwt/qwtconfig.pri b/qwt/qwtconfig.pri
new file mode 100644
index 000000000..045e53275
--- /dev/null
+++ b/qwt/qwtconfig.pri
@@ -0,0 +1,85 @@
+######################################################################
+# Install paths
+######################################################################
+
+unix {
+ INSTALLBASE = /usr
+}
+
+win32 {
+ INSTALLBASE = C:/Qwt
+}
+
+target.path = $$INSTALLBASE/lib
+headers.path = $$INSTALLBASE/include/qwt5
+doc.path = $$INSTALLBASE/share
+
+######################################################################
+# qmake internal options
+######################################################################
+
+CONFIG += qt # Also for Qtopia Core!
+CONFIG += warn_on
+CONFIG += thread
+
+######################################################################
+# release/debug mode
+# The designer plugin is always built in release mode.
+# If want to change this, you have to edit designer/designer.pro.
+######################################################################
+
+CONFIG += release # release/debug
+
+######################################################################
+# Build the static/shared libraries.
+# If QwtDll is enabled, a shared library is built, otherwise
+# it will be a static library.
+######################################################################
+
+CONFIG += QwtDll
+
+######################################################################
+# QwtPlot enables all classes, that are needed to use the QwtPlot
+# widget.
+######################################################################
+
+CONFIG += QwtPlot
+
+######################################################################
+# QwtWidgets enables all classes, that are needed to use the all other
+# widgets (sliders, dials, ...), beside QwtPlot.
+######################################################################
+
+CONFIG += QwtWidgets
+
+######################################################################
+# If you want to display svg images on the plot canvas, enable the
+# line below. Note that Qwt needs the svg+xml, when enabling
+# QwtSVGItem.
+######################################################################
+
+CONFIG += QwtSVGItem
+
+######################################################################
+# If you have a commercial license you can use the MathML renderer
+# of the Qt solutions package to enable MathML support in Qwt.
+# So if you want this, copy qtmmlwidget.h + qtmmlwidget.cpp to
+# textengines/mathml and enable the line below.
+######################################################################
+
+#CONFIG += QwtMathML
+
+######################################################################
+# If you want to build the Qwt designer plugin,
+# enable the line below.
+# Otherwise you have to build it from the designer directory.
+######################################################################
+
+CONFIG += QwtDesigner
+
+######################################################################
+# If you want to auto build the examples, enable the line below
+# Otherwise you have to build them from the examples directory.
+######################################################################
+
+#CONFIG += QwtExamples