aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/pathitem/pathitem.pro
blob: d70bb6f203cfedae411a09a89cf1007e410f7435 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
CXX_MODULE = qml
TARGET  = qmlpathitemplugin
TARGETPATH = Qt/labs/pathitem
IMPORT_VERSION = 1.0

QT = core gui qml quick quick-private

HEADERS += \
    qquickpathitem_p.h \
    qquickpathitem_p_p.h \
    qquickpathitemgenericrenderer_p.h \
    qquickpathitemsoftwarerenderer_p.h

SOURCES += \
    plugin.cpp \
    qquickpathitem.cpp \
    qquickpathitemgenericrenderer.cpp \
    qquickpathitemsoftwarerenderer.cpp

qtConfig(opengl) {
    HEADERS += \
        qquicknvprfunctions_p.h \
        qquicknvprfunctions_p_p.h \
        qquickpathitemnvprrenderer_p.h

    SOURCES += \
        qquicknvprfunctions.cpp \
        qquickpathitemnvprrenderer.cpp
}

load(qml_plugin)