blob: b7c6cb9fad8168d7f35d7598fb319d8de43f1c31 (
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
|
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 \
src/glsphere.cpp \
src/gldisc.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 \
src/glsphere.h \
src/gldisc.h
RESOURCES += qml.qrc \
shaders.qrc \
textures.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)
|