aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickshapes/quickshapes.pro
blob: 5a59dec18e996d0270e35f8204a65e369cd29d69 (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
TARGET = QtQuickShapes

QT = core gui-private qml quick-private

CONFIG += simd optimize_full internal_module

HEADERS += \
    qquickshapesglobal.h \
    qquickshapesglobal_p.h \
    qquickshape_p.h \
    qquickshape_p_p.h \
    qquickshapegenericrenderer_p.h \
    qquickshapesoftwarerenderer_p.h

SOURCES += \
    qquickshape.cpp \
    qquickshapegenericrenderer.cpp \
    qquickshapesoftwarerenderer.cpp

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

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

RESOURCES += qtquickshapes.qrc

load(qt_module)