##// END OF EJS Templates
Spit&polish public headers
Spit&polish public headers

File last commit:

r1978:1592e9b9bba3
r2046:eee7dbc18b27
Show More
declarative.pro
50 lines | 1.3 KiB | text/idl | PrologLexer
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 }
Michal Klocek
Adds release debug direcotires to bin lib
r1978
TARGET = qtcommercialchartqml
QT += declarative
DESTDIR = $$CHART_BUILD_QML_PLUGIN_DIR
Tero Ahola
Refactored QML axis handling
r1813 INCLUDEPATH += $$CHART_BUILD_PRIVATE_HEADER_DIR
Tero Ahola
Proof-of-concept for QML api...
r120
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)
}
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
Added CategoryAxis and CategoryRange to QML API
r1870 declarativebarseries.cpp \
Tero Ahola
Added ChartView.minimumMargins to QML properties
r1928 declarativecategoryaxis.cpp \
declarativemargins.cpp
Tero Ahola
Added CategoryAxis and CategoryRange to QML API
r1870
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
Added CategoryAxis and CategoryRange to QML API
r1870 declarativebarseries.h \
Tero Ahola
Added ChartView.minimumMargins to QML properties
r1928 declarativecategoryaxis.h \
declarativemargins.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, "/","\\")}
Michal Klocek
Adds release debug direcotires to bin lib
r1978 QMAKE_POST_LINK += $$QMAKE_COPY $$FILE $$CHART_BUILD_QML_PLUGIN_DIR