aboutsummaryrefslogtreecommitdiffstats
path: root/softwarecontext/softwarecontext.pro
blob: 61607a13cf5e698a576d05402adbb5c9ef3572a0 (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
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

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

OTHER_FILES += softwarecontext.json

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

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

INSTALLS += target files