##// END OF EJS Templates
Change make doc to make docs
Change make doc to make docs

File last commit:

r723:37842f579a1d
r725:4ecc3dffc588
Show More
qmlplugin.pro
45 lines | 1.1 KiB | text/idl | PrologLexer
Tero Ahola
Make qmlplugin work on OSX integrated build
r641 TEMPLATE = lib
TARGET = qtcommercialchartqml
CONFIG += qt plugin
QT += declarative
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 !")
}
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
Proposal for QML data API
r196 declarativescatterseries.cpp \
Tero Ahola
d
r722 declarativexypoint.cpp \
Tero Ahola
Dynamic data for QML pie and line series
r215 declarativepieseries.cpp \
Tero Ahola
Added QML api for bar series
r646 declarativelineseries.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
Proposal for QML data API
r196 declarativescatterseries.h \
Tero Ahola
d
r722 declarativexypoint.h \
Tero Ahola
Dynamic data for QML pie and line series
r215 declarativepieseries.h \
Tero Ahola
Added QML api for bar series
r646 declarativelineseries.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