##// END OF EJS Templates
updated qml doc
updated qml doc

File last commit:

r1433:37348a205270
r1646:eb64bc162d2a
Show More
declarative.pro
55 lines | 1.4 KiB | text/idl | PrologLexer
Tero Ahola
Make qmlplugin work on OSX integrated build
r641 TARGET = qtcommercialchartqml
QT += declarative
Michal Klocek
Move qmlplugins to plugins/declarative
r1197 !include( ../plugins.pri ) {
error( "Couldn't find the plugins.pri file!" )
Tero Ahola
Proof-of-concept for QML api...
r120 }
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
}
Jani Honkonen
Fix building debug & release at the same time...
r1433 CONFIG(debug, debug|release) {
mac: TARGET = $$join(TARGET,,,_debug)
win32: TARGET = $$join(TARGET,,,d)
}
# enable building debug and release at the same time
CONFIG += debug_and_release
# On windows by default build both debug and release at the same time
win32:CONFIG += build_all
Jani Honkonen
First draft of project structure
r1 SOURCES += \
plugin.cpp \
Tero Ahola
Proof-of-concept for QML api...
r120 declarativechart.cpp \
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 declarativexypoint.cpp \
Tero Ahola
Added axis to QML api
r1096 declarativexyseries.cpp \
Tero Ahola
Added QML api for bar series
r646 declarativelineseries.cpp \
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 declarativesplineseries.cpp \
Tero Ahola
Added area series to QML api
r847 declarativeareaseries.cpp \
Tero Ahola
Spline to QML API
r732 declarativescatterseries.cpp \
declarativepieseries.cpp \
Tero Ahola
QML custom model demo now implements it's own QAbstractItemModel based model
r1272 declarativebarseries.cpp
Michal Klocek
Move qmlplugins to plugins/declarative
r1197
Jani Honkonen
First draft of project structure
r1 HEADERS += \
Tero Ahola
Proof-of-concept for QML api...
r120 declarativechart.h \
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 declarativexypoint.h \
Tero Ahola
Added axis to QML api
r1096 declarativexyseries.h \
Tero Ahola
Added QML api for bar series
r646 declarativelineseries.h \
Tero Ahola
Spline to QML API
r732 declarativesplineseries.h \
Tero Ahola
Added area series to QML api
r847 declarativeareaseries.h \
Tero Ahola
Spline to QML API
r732 declarativescatterseries.h \
declarativepieseries.h \
Tero Ahola
QML custom model demo now implements it's own QAbstractItemModel based model
r1272 declarativebarseries.h
Jani Honkonen
First draft of project structure
r1
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
Michal Klocek
Simplfies default configuration
r1021
Tero Ahola
Simplified QML plugin QMAKE_POST_LINK
r1027 FILE = $$PWD/qmldir
win32:{FILE = $$replace(FILE, "/","\\")}
QMAKE_POST_LINK += $$QMAKE_COPY $$FILE $$CHART_BUILD_PLUGIN_DIR