-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViewCube.pro
51 lines (45 loc) · 1.02 KB
/
ViewCube.pro
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
FORMS += \
mainwindow.ui \
shadereditor.ui
HEADERS += \
UI/GLView.h \
UI/MainWindow.h \
Entities/Camera.h \
Entities/Entity.h \
Entities/Entity2D.h \
Entities/Entity3D.h \
Entities/Light.h \
UI/GLShader.h \
Application/GlobalSettings.h \
Application/LightType.h \
Application/Scene.h \
Parser/FbxParser.h \
Parser/Tools.h \
Parser/FileParser.h \
UI/MyGLWidget.h \
shadereditor.h \
UI/shadereditor.h \
Entities/DrawableEntity.h
SOURCES += \
Main.cpp \
UI/GLView.cpp \
UI/MainWindow.cpp \
Entities/Camera.cpp \
Entities/Entity.cpp \
Entities/Entity2D.cpp \
Entities/Entity3D.cpp \
Entities/Light.cpp \
UI/GLShader.cpp \
Application/GlobalSettings.cpp \
Application/LightType.cpp \
Application/Scene.cpp \
Parser/FbxParser.cpp \
Parser/Tools.cpp \
UI/MyGLWidget.cpp \
UI/shadereditor.cpp \
Entities/DrawableEntity.cpp
QT += gui
CONFIG += qt
QT += core gui
QT += widgets
QT += opengl