summaryrefslogtreecommitdiff
path: root/qwt5/qwtconfig-archlinux.pri
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-12-12 14:38:45 +0100
committerErich Eckner <git@eckner.net>2019-12-12 14:38:45 +0100
commit87febff202d888c401c684bcd1ab8304d09d58a2 (patch)
tree16e5a2cfb8a7fa6cdab62a4b92652f7104a3b25b /qwt5/qwtconfig-archlinux.pri
parentaea50ea70924ce64a580e4df9d4860a917bfd54e (diff)
downloadarchlinuxewe.git.save-87febff202d888c401c684bcd1ab8304d09d58a2.tar.xz
qwt5 neu
Diffstat (limited to 'qwt5/qwtconfig-archlinux.pri')
-rw-r--r--qwt5/qwtconfig-archlinux.pri86
1 files changed, 86 insertions, 0 deletions
diff --git a/qwt5/qwtconfig-archlinux.pri b/qwt5/qwtconfig-archlinux.pri
new file mode 100644
index 00000000..fcd31a5c
--- /dev/null
+++ b/qwt5/qwtconfig-archlinux.pri
@@ -0,0 +1,86 @@
+######################################################################
+# 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
+RELEASE_SUFFIX = 5
+
+######################################################################
+# 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