-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolarSystemSimulation.pro
More file actions
140 lines (128 loc) · 4.98 KB
/
Copy pathSolarSystemSimulation.pro
File metadata and controls
140 lines (128 loc) · 4.98 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#-------------------------------------------------
#
# Project created by QtCreator 2012-04-05T21:42:37
#
#-------------------------------------------------
QT += core gui sql opengl
TARGET = SolarSystemSimulation
TEMPLATE = app
SOURCES += main.cpp \
forms/main/mainwindow.cpp \
OpenGL/glvector.cpp \
OpenGL/glperspective.cpp \
OpenGL/glmatrix.cpp \
OpenGL/glcolorrgba.cpp \
forms/simulation/simulationview.cpp \
forms/heavenlybody/heavenlybodyoverview.cpp \
model/heavenlybody/heavenlybodymodel.cpp \
data/heavenlybody/heavenlybodyrepository.cpp \
database/postgresqldatabase.cpp \
forms/heavenlybody/heavenlybodydetails.cpp \
model/heavenlybody/heavenlybodytablemodel.cpp \
model/heavenlybody/heavenlybody.cpp \
data/solarsystem/solarsystemrepository.cpp \
model/solarsystem/solarsystem.cpp \
model/solarsystem/solarsystemheavenlybody.cpp \
forms/solarsystem/solarsystemoverview.cpp \
model/solarsystem/solarsystemmodel.cpp \
model/solarsystem/solarsystemtablemodel.cpp \
forms/solarsystem/solarsystemdetails.cpp \
model/heavenlybody/heavenlybodycomboboxmodel.cpp \
model/solarsystem/solarsystemheavenlybodytablemodel.cpp \
data/exceptions/deleteentityfailedexception.cpp \
model/exceptions/propertynotvalidexception.cpp \
simulation/solarsystemsimulation.cpp \
visualization/heavenlybody/heavenlybody3d.cpp \
visualization/heavenlybody/star3d.cpp \
visualization/heavenlybody/planet3d.cpp \
visualization/orbit/orbit3d.cpp \
database/exceptions/databaseconnectionfailedexception.cpp \
data/exceptions/sqlqueryexception.cpp \
data/exceptions/entitynotuniqueexception.cpp \
forms/main/about.cpp \
visualization/light/light.cpp \
visualization/environment/environment.cpp \
data/exceptions/heavenlybodytypeexception.cpp \
forms/heavenlybody/heavenlybodyitemdelegate.cpp \
forms/solarsystem/solarsystemitemdelegate.cpp
HEADERS += forms/main/mainwindow.h \
OpenGL/glvector.h \
OpenGL/glperspective.h \
OpenGL/glmatrix.h \
OpenGL/glcolorrgba.h \
OpenGL/GL/glut.h \
OpenGL/GL/freeglut_std.h \
OpenGL/GL/freeglut_ext.h \
OpenGL/GL/freeglut.h \
forms/simulation/simulationview.h \
forms/heavenlybody/heavenlybodyoverview.h \
model/heavenlybody/heavenlybodymodel.h \
data/heavenlybody/heavenlybodyrepository.h \
database/postgresqldatabase.h \
forms/heavenlybody/heavenlybodydetails.h \
model/heavenlybody/heavenlybodytablemodel.h \
model/heavenlybody/heavenlybody.h \
data/solarsystem/solarsystemrepository.h \
model/solarsystem/solarsystem.h \
model/solarsystem/solarsystemheavenlybody.h \
forms/solarsystem/solarsystemoverview.h \
model/solarsystem/solarsystemmodel.h \
model/solarsystem/solarsystemtablemodel.h \
forms/solarsystem/solarsystemdetails.h \
model/heavenlybody/heavenlybodycomboboxmodel.h \
model/solarsystem/solarsystemheavenlybodytablemodel.h \
data/exceptions/deleteentityfailedexception.h \
model/exceptions/propertynotvalidexception.h \
simulation/solarsystemsimulation.h \
visualization/heavenlybody/heavenlybody3d.h \
visualization/heavenlybody/star3d.h \
visualization/heavenlybody/planet3d.h \
visualization/orbit/orbit3d.h \
database/exceptions/databaseconnectionfailedexception.h \
data/exceptions/sqlqueryexception.h \
data/exceptions/entitynotuniqueexception.h \
forms/main/about.h \
visualization/light/light.h \
visualization/environment/environment.h \
data/exceptions/heavenlybodytypeexception.h \
forms/heavenlybody/heavenlybodyitemdelegate.h \
forms/solarsystem/solarsystemitemdelegate.h \
data/exceptions/project.h
FORMS += forms/main/mainwindow.ui \
forms/simulation/simulationview.ui \
forms/heavenlybody/heavenlybodyoverview.ui \
forms/heavenlybody/heavenlybodydetails.ui \
forms/solarsystem/solarsystemoverview.ui \
forms/solarsystem/solarsystemdetails.ui \
forms/main/about.ui
# Seperate the Win32 and Unix freeglut libs.
win32 { LIBS += -L \
"../SolarSystemSimulation/OpenGL/freeglut/lib" \
-lfreeglut
}
unix { LIBS += -lglut \
-lGL \
-lGLU
}
OTHER_FILES += \
database/DDL.txt \
database/DDL_with_data.txt \
database/DDL_presentation.sql \
database/heavenlybody.txt \
database/solarsystem.txt \
database/solarsystemtoheavenlybody.txt \
OpenGL/freeglut/lib/libfreeglut_static.a \
OpenGL/freeglut/lib/libfreeglut.a \
database/backups/SolarSystemSimulation.backup \
README.md \
database/backups/SolarSystemSimulation_SecondPresentation.backup
RESOURCES += \
forms/ressources/Ressources.qrc
#CONFIG(release, debug|release) {
# DESTDIR = release
#} else {
# DESTDIR = debug
#}
#copyfiles.commands += $${QMAKE_COPY} ..\\$${TARGET}\\documentation\\de_DE\\manual.pdf $${DESTDIR}\\documentation\\de_DE\\manual.pdf
#QMAKE_EXTRA_TARGETS += copyfiles
#POST_TARGETDEPS += copyfiles