aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/scenegraph/softwarecontext/softwarecontext.pro
blob: d60260c1ebabb5bd1b859affa380b53f068f88d2 (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
32
33
34
35
36
37
38
39
40
41
42
43
TEMPLATE=lib
TARGET=softwarecontext

CONFIG += plugin

QT += gui-private core-private quick-private qml-private

SOURCES += \
    context.cpp \
    pluginmain.cpp \
    renderloop.cpp \
    rectanglenode.cpp \
    imagenode.cpp \
    pixmaptexture.cpp \
    glyphnode.cpp \
    renderingvisitor.cpp \
    ninepatchnode.cpp \
    softwarelayer.cpp \
    threadedrenderloop.cpp \
    painternode.cpp

HEADERS += \
    context.h \
    pluginmain.h \
    renderloop.h \
    rectanglenode.h \
    imagenode.h \
    pixmaptexture.h \
    glyphnode.h \
    renderingvisitor.h \
    ninepatchnode.h \
    softwarelayer.h \
    threadedrenderloop.h \
    painternode.h

OTHER_FILES += softwarecontext.json

target.path +=  $$[QT_INSTALL_PLUGINS]/scenegraph

files.path += $$[QT_INSTALL_PLUGINS]/scenegraph

INSTALLS += target files