-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPhysicsSystem.pro
More file actions
64 lines (50 loc) · 1.18 KB
/
PhysicsSystem.pro
File metadata and controls
64 lines (50 loc) · 1.18 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
#-------------------------------------------------
#
# Project created by QtCreator 2014-11-26T13:10:50
#
#-------------------------------------------------
QT += core gui opengl
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = PhysicsSystem
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
glwidget.cpp \
addtetdialog.cpp \
editobjdialog.cpp \
particlesystem.cpp \
objvertexsystem.cpp \
particle.cpp \
editskeletondialog.cpp \
simoptionsdialog.cpp \
editsystemdialog.cpp
HEADERS += mainwindow.hpp \
glwidget.hpp \
vec.hpp \
addtetdialog.hpp \
editobjdialog.hpp \
particlesystem.hpp \
objvertexsystem.hpp \
particle.hpp \
editskeletondialog.hpp \
simoptionsdialog.hpp \
editsystemdialog.hpp
FORMS += mainwindow.ui \
addtetdialog.ui \
editobjdialog.ui \
editskeletondialog.ui \
simoptionsdialog.ui \
editsystemdialog.ui
CONFIG += c++11
macx {
INCLUDEPATH += /opt/local/include
LIBS += -framework GLUT
LIBS += -L/opt/local/lib -lassimp
}
unix:!macx {
LIBS += -lglut -lGL -lGLU -lassimp
}
OTHER_FILES += \
.gitignore \
License.txt \
README.md