##// END OF EJS Templates
charts: Follow Qt's already-existent -developer-build option....
charts: Follow Qt's already-existent -developer-build option. This means that rebuilding the entirety of Qt with -developer-build will get us all autotests. Furthermore, it fixes the situation on OS X where a debug_and_release build wouldn't actually fully link. In addition, we clean up the tests that were stubbed when internals aren't available to just not build/run them at all by checking private_tests. Change-Id: I5701559cd91df842f78346d7d6ad9295bee587d0 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2853:a801e78fb8d1
r2855:aa5aba329d30
Show More
chartsqml2.pro
72 lines | 1.8 KiB | text/idl | PrologLexer
TARGET = qtchartsqml2
QT += qml quick
QT += charts charts-private
TARGETPATH = QtCharts
IMPORT_VERSION = $$MODULE_VERSION
# Only build qml plugin static if Qt itself is also built static
!contains(QT_CONFIG, static): CONFIG -= static staticlib
include($$PWD/designer/designer.pri)
INCLUDEPATH += ../../include \
../../include/QtCharts \
../charts \
../charts/animations \
../charts/axis \
../charts/domain
SOURCES += \
chartsqml2_plugin.cpp \
declarativechart.cpp \
declarativexypoint.cpp \
declarativexyseries.cpp \
declarativelineseries.cpp \
declarativesplineseries.cpp \
declarativeareaseries.cpp \
declarativescatterseries.cpp \
declarativepieseries.cpp \
declarativebarseries.cpp \
declarativecategoryaxis.cpp \
declarativemargins.cpp \
declarativeaxes.cpp \
declarativepolarchart.cpp \
declarativeboxplotseries.cpp \
declarativechartnode.cpp \
declarativerendernode.cpp
HEADERS += \
declarativechart.h \
declarativexypoint.h \
declarativexyseries.h \
declarativelineseries.h \
declarativesplineseries.h \
declarativeareaseries.h \
declarativescatterseries.h \
declarativepieseries.h \
declarativebarseries.h \
declarativecategoryaxis.h \
declarativemargins.h \
declarativeaxes.h \
declarativepolarchart.h \
declarativeboxplotseries.h \
declarativechartnode.h \
declarativerendernode.h
OTHER_FILES = qmldir
CONFIG += no_cxx_module
load(qml_plugin)
win32 {
CONFIG += skip_target_version_ext
VERSION = $$MODULE_VERSION
QMAKE_TARGET_PRODUCT = "Qt Charts (Qt $$QT_VERSION)"
QMAKE_TARGET_DESCRIPTION = "Charts QML plugin for Qt."
}
QML_FILES += \
$$PWD/plugins.qmltypes