##// END OF EJS Templates
minor. typo
minor. typo

File last commit:

r996:ce5f1c868418
r997:b610c172e3ad
Show More
qmlplugin.pro
51 lines | 1.3 KiB | text/idl | PrologLexer
Tero Ahola
Make qmlplugin work on OSX integrated build
r641 TEMPLATE = lib
TARGET = qtcommercialchartqml
CONFIG += qt plugin
QT += declarative
Michal Klocek
Improves build configuration...
r996 !include( ../config.pri ) {
Tero Ahola
Proof-of-concept for QML api...
r120 error( "Couldn't find the common.pri file!" )
}
Michal Klocek
Improves build configuration...
r996 !include( ../build.pri ) {
error( "Couldn't find the build.pri file !")
Tero Ahola
Proof-of-concept for QML api...
r120 }
Michal Klocek
Add qmlplugin support for integrated build
r255 DESTDIR = $$CHART_BUILD_PLUGIN_DIR
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
Spline to QML API
r732 declarativexyseries.cpp \
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 declarativexypoint.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 bar series draft to QML API
r723 declarativebarseries.cpp
Jani Honkonen
First draft of project structure
r1 HEADERS += \
Tero Ahola
Proof-of-concept for QML api...
r120 declarativechart.h \
Tero Ahola
Spline to QML API
r732 declarativexyseries.h \
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 declarativexypoint.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 bar series draft to QML API
r723 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