##// END OF EJS Templates
Removed unused DeclarativeSeries class
Removed unused DeclarativeSeries class

File last commit:

r311:e1f0c8c24a70
r311:e1f0c8c24a70
Show More
qmlplugin.pro
45 lines | 1.1 KiB | text/idl | PrologLexer
Tero Ahola
Proof-of-concept for QML api...
r120 !include( ../common.pri ) {
error( "Couldn't find the common.pri file!" )
}
!include( ../integrated.pri ) {
error( "Couldn't find the integrated.pri file !")
}
Jani Honkonen
First draft of project structure
r1 TEMPLATE = lib
Tero Ahola
Proof-of-concept for QML api...
r120 TARGET = qtcommercialchartqml
Michal Klocek
Add qmlplugin support for integrated build
r255 DESTDIR = $$CHART_BUILD_PLUGIN_DIR
Jani Honkonen
First draft of project structure
r1 CONFIG += qt plugin
QT += declarative
Jani Honkonen
One more fix for version flag
r4 contains(QT_MAJOR_VERSION, 5) {
Tero Ahola
Proof-of-concept for QML api...
r120 # TODO: QtQuick2 not supported by the implementation currently
Jani Honkonen
Workaround for version check flag
r3 DEFINES += QTQUICK2
}
Michal Klocek
Add qmlplugin support for integrated build
r255 OBJECTS_DIR = $$CHART_BUILD_DIR/plugin
MOC_DIR = $$CHART_BUILD_DIR/plugin
UI_DIR = $$CHART_BUILD_DIR/plugin
RCC_DIR = $$CHART_BUILD_DIR/plugin
Jani Honkonen
First draft of project structure
r1
SOURCES += \
plugin.cpp \
Tero Ahola
Proof-of-concept for QML api...
r120 declarativechart.cpp \
Tero Ahola
Proposal for QML data API
r196 declarativescatterseries.cpp \
Tero Ahola
Dynamic data for QML pie and line series
r215 scatterelement.cpp \
declarativepieseries.cpp \
declarativelineseries.cpp
Jani Honkonen
First draft of project structure
r1 HEADERS += \
Tero Ahola
Proof-of-concept for QML api...
r120 declarativechart.h \
Tero Ahola
Proposal for QML data API
r196 declarativescatterseries.h \
Tero Ahola
Dynamic data for QML pie and line series
r215 scatterelement.h \
declarativepieseries.h \
declarativelineseries.h
Jani Honkonen
First draft of project structure
r1
Michal Klocek
Add qmlplugin support for integrated build
r255 QMAKE_POST_LINK = $$QMAKE_COPY qmldir $$CHART_BUILD_PLUGIN_DIR
Tero Ahola
Proof-of-concept for QML api...
r120 TARGETPATH = QtCommercial/Chart
Jani Honkonen
First draft of project structure
r1 target.path = $$[QT_INSTALL_IMPORTS]/$$TARGETPATH
qmldir.files += $$PWD/qmldir
qmldir.path += $$[QT_INSTALL_IMPORTS]/$$TARGETPATH
INSTALLS += target qmldir