core/qwt/qwtconfig-chakra.pri

86 lines
3.0 KiB
Plaintext
Raw Normal View History

######################################################################
# Install paths
######################################################################
unix {
2015-04-25 18:55:21 +08:00
INSTALLBASE = /usr
}
win32 {
2015-04-25 18:55:21 +08:00
INSTALLBASE = C:/Qwt
}
2015-04-25 18:55:21 +08:00
target.path = $$INSTALLBASE/lib
headers.path = $$INSTALLBASE/include/qwt
doc.path = $$INSTALLBASE/share
######################################################################
2015-04-25 18:55:21 +08:00
# qmake internal options
######################################################################
2015-04-25 18:55:21 +08:00
CONFIG += qt # Also for Qtopia Core!
CONFIG += warn_on
CONFIG += thread
######################################################################
2015-04-25 18:55:21 +08:00
# release/debug mode
# The designer plugin is always built in release mode.
# If want to change this, you have to edit designer/designer.pro.
######################################################################
2015-04-25 18:55:21 +08:00
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.
######################################################################
2015-04-25 18:55:21 +08:00
CONFIG += QwtDll
######################################################################
2015-04-25 18:55:21 +08:00
# QwtPlot enables all classes, that are needed to use the QwtPlot
# widget.
######################################################################
2015-04-25 18:55:21 +08:00
CONFIG += QwtPlot
######################################################################
# QwtWidgets enables all classes, that are needed to use the all other
2015-04-25 18:55:21 +08:00
# widgets (sliders, dials, ...), beside QwtPlot.
######################################################################
2015-04-25 18:55:21 +08:00
CONFIG += QwtWidgets
######################################################################
2015-04-25 18:55:21 +08:00
# 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.
######################################################################
2015-04-25 18:55:21 +08:00
CONFIG += QwtSVGItem
######################################################################
2015-04-25 18:55:21 +08:00
# 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.
######################################################################
2015-04-25 18:55:21 +08:00
#CONFIG += QwtMathML
######################################################################
2015-04-25 18:55:21 +08:00
# If you want to build the Qwt designer plugin,
# enable the line below.
# Otherwise you have to build it from the designer directory.
######################################################################
2015-04-25 18:55:21 +08:00
CONFIG += QwtDesigner
######################################################################
# If you want to auto build the examples, enable the line below
# Otherwise you have to build them from the examples directory.
######################################################################
2015-04-25 18:55:21 +08:00
#CONFIG += QwtExamples