-
Notifications
You must be signed in to change notification settings - Fork 0
/
cg.pro
60 lines (51 loc) · 1.2 KB
/
cg.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
52
53
54
55
56
57
58
59
60
#-------------------------------------------------
#
# Project created by QtCreator 2014-11-04T07:34:38
#
#-------------------------------------------------
QT += core gui opengl xml
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = cg
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
glwidget.cpp \
glelement.cpp \
glelements/cube.cpp \
glelements/teapot.cpp \
glelements/sphere.cpp \
ui/colordialog.cpp \
light.cpp \
xmlhelper.cpp \
ui/lightdialog.cpp \
glelements/cone.cpp \
glelements/cylinder.cpp \
glelements/prism.cpp \
glelements/frustum.cpp \
loadobj.cpp \
mtllib.cpp \
texturemanager.cpp
HEADERS += mainwindow.h \
glwidget.h \
glelement.h \
glelements/cube.h \
glelements.h \
glelements/teapot.h \
glelements/sphere.h \
ui/colordialog.h \
light.h \
xmlhelper.h \
ui/lightdialog.h \
glelements/cone.h \
glelements/cylinder.h \
glelements/prism.h \
glelements/frustum.h \
loadobj.h \
mtllib.h \
vertice.h \
texturemanager.h
FORMS += mainwindow.ui \
ui/colordialog.ui \
ui/lightdialog.ui
LIBS +=-lglut -lGLU
QMAKE_CXXFLAGS += -std=c++11