summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/webgl/webgl.pro
blob: 7f7227c634d6684e4b39edd0adc413f8425eb11d (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
TARGET = qwebgl
QT += \
    websockets \
    gui-private \
    eventdispatcher_support-private \
    fontdatabase_support-private \
    theme_support-private

qtHaveModule(quick) {
    QT += quick
}

HEADERS += \
    qwebglcontext.h \
    qwebglfunctioncall.h \
    qwebglhttpserver.h \
    qwebglintegration.h \
    qwebglintegration_p.h \
    qwebglplatformservices.h \
    qwebglscreen.h \
    qwebglwebsocketserver.h \
    qwebglwindow.h \
    qwebglwindow_p.h

SOURCES += \
    qwebglcontext.cpp \
    qwebglfunctioncall.cpp \
    qwebglhttpserver.cpp \
    qwebglintegration.cpp \
    qwebglmain.cpp \
    qwebglplatformservices.cpp \
    qwebglscreen.cpp \
    qwebglwebsocketserver.cpp \
    qwebglwindow.cpp

RESOURCES += \
    webgl.qrc

DISTFILES += webgl.json

PLUGIN_TYPE = platforms
PLUGIN_CLASS_NAME = QWebGLIntegrationPlugin
!equals(TARGET, $$QT_DEFAULT_QPA_PLUGIN): PLUGIN_EXTENDS = -
load(qt_plugin)