qmlplugin.pro
48 lines
| 1.2 KiB
| text/idl
|
PrologLexer
/ qmlplugin / qmlplugin.pro
Tero Ahola
|
r641 | TEMPLATE = lib | ||
TARGET = qtcommercialchartqml | ||||
CONFIG += qt plugin | ||||
QT += declarative | ||||
Tero Ahola
|
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
|
r255 | DESTDIR = $$CHART_BUILD_PLUGIN_DIR | ||
Jani Honkonen
|
r4 | contains(QT_MAJOR_VERSION, 5) { | ||
Tero Ahola
|
r120 | # TODO: QtQuick2 not supported by the implementation currently | ||
Jani Honkonen
|
r3 | DEFINES += QTQUICK2 | ||
} | ||||
Michal Klocek
|
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
|
r1 | |||
SOURCES += \ | ||||
plugin.cpp \ | ||||
Tero Ahola
|
r120 | declarativechart.cpp \ | ||
Tero Ahola
|
r722 | declarativexypoint.cpp \ | ||
Tero Ahola
|
r732 | declarativexyseries.cpp \ | ||
Tero Ahola
|
r646 | declarativelineseries.cpp \ | ||
Tero Ahola
|
r732 | declarativescatterseries.cpp \ | ||
declarativepieseries.cpp \ | ||||
Tero Ahola
|
r723 | declarativebarseries.cpp | ||
Jani Honkonen
|
r1 | HEADERS += \ | ||
Tero Ahola
|
r120 | declarativechart.h \ | ||
Tero Ahola
|
r722 | declarativexypoint.h \ | ||
Tero Ahola
|
r732 | declarativexyseries.h \ | ||
Tero Ahola
|
r646 | declarativelineseries.h \ | ||
Tero Ahola
|
r732 | declarativesplineseries.h \ | ||
declarativescatterseries.h \ | ||||
declarativepieseries.h \ | ||||
Tero Ahola
|
r723 | declarativebarseries.h | ||
Jani Honkonen
|
r1 | |||
Tero Ahola
|
r120 | TARGETPATH = QtCommercial/Chart | ||
Jani Honkonen
|
r1 | target.path = $$[QT_INSTALL_IMPORTS]/$$TARGETPATH | ||
qmldir.files += $$PWD/qmldir | ||||
qmldir.path += $$[QT_INSTALL_IMPORTS]/$$TARGETPATH | ||||
INSTALLS += target qmldir | ||||