blob: e7215bc14d0b463797fcf7638fa554663804b72d (
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
|
TEMPLATE = app
QT += qml quick widgets opengl
SOURCES += \
src/main.cpp \
src/glcolorrgba.cpp \
src/glesrenderer.cpp \
src/glitem.cpp \
src/glpoint.cpp \
src/shaderdebugger.cpp \
src/mmscene.cpp \
src/glbody.cpp \
src/glcube.cpp
HEADERS += \
src/glcolorrgba.h \
src/gldefines.h \
src/glesrenderer.h \
src/glitem.h \
src/glpoint.h \
src/shaderdebugger.h \
src/mmscene.h \
src/glbody.h \
src/glcube.h
RESOURCES += qml.qrc \
shaders.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
|