summaryrefslogtreecommitdiffstats
path: root/src/declarative/scenegraph/scenegraph.pri
blob: 9cd9d32d6e112f3db2f1bd624b5267391432dd20 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
INCLUDEPATH += $$PWD/coreapi $$PWD/convenience $$PWD/3d
!contains(QT_CONFIG, egl):DEFINES += QT_NO_EGL

QT += opengl

# Core API
HEADERS += \
    $$PWD/coreapi/material.h \
    $$PWD/coreapi/node.h \
    $$PWD/coreapi/nodeupdater_p.h \
    $$PWD/coreapi/renderer.h \
    $$PWD/coreapi/qmlrenderer.h \
    $$PWD/coreapi/qsgcontext.h \
    $$PWD/coreapi/qsgcontextplugin.h \
    $$PWD/coreapi/qsgtextureprovider.h \
    $$PWD/coreapi/qsggeometry.h \
    $$PWD/coreapi/qsgtexture.h \
    $$PWD/coreapi/qsgtexture_p.h

SOURCES += \
    $$PWD/coreapi/material.cpp \
    $$PWD/coreapi/node.cpp \
    $$PWD/coreapi/nodeupdater.cpp \
    $$PWD/coreapi/renderer.cpp \
    $$PWD/coreapi/qmlrenderer.cpp \
    $$PWD/coreapi/qsgcontext.cpp \
    $$PWD/coreapi/qsgcontextplugin.cpp \
    $$PWD/coreapi/qsgtextureprovider.cpp \
    $$PWD/coreapi/qsggeometry.cpp \
    $$PWD/coreapi/qsgtexture.cpp

# Convenience API
HEADERS += \
    $$PWD/convenience/qsgareaallocator_p.h \
    $$PWD/convenience/flatcolormaterial.h \
    $$PWD/convenience/solidrectnode.h \
    $$PWD/convenience/texturematerial.h \
    $$PWD/convenience/vertexcolormaterial.h \
    $$PWD/convenience/distancefieldglyphcache_p.h

SOURCES += \
    $$PWD/convenience/qsgareaallocator.cpp \
    $$PWD/convenience/flatcolormaterial.cpp \
    $$PWD/convenience/solidrectnode.cpp \
    $$PWD/convenience/texturematerial.cpp \
    $$PWD/convenience/vertexcolormaterial.cpp \
    $$PWD/convenience/distancefieldglyphcache.cpp


# 3D API (duplicates with qt3d)
HEADERS += \
    $$PWD/3d/qsgmatrix4x4stack.h \
    $$PWD/3d/qsgmatrix4x4stack_p.h


SOURCES += \
    $$PWD/3d/qsgmatrix4x4stack.cpp

include(adaptationlayers/adaptationlayers.pri)