2016-12-15 14:19:08 +00:00
|
|
|
TARGET = dust3d
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
QT += widgets opengl
|
2016-12-21 14:06:47 +00:00
|
|
|
CONFIG += debug
|
2016-12-15 14:19:08 +00:00
|
|
|
|
|
|
|
VPATH += ../src
|
|
|
|
INCLUDEPATH += ../src
|
|
|
|
|
|
|
|
SOURCES += main.cpp \
|
|
|
|
mainwindow.cpp \
|
2016-12-19 15:18:23 +00:00
|
|
|
render.cpp \
|
|
|
|
vector3d.c \
|
|
|
|
draw.cpp \
|
|
|
|
array.c \
|
|
|
|
bmesh.c \
|
2016-12-26 08:39:01 +00:00
|
|
|
matrix.c \
|
2016-12-28 12:46:25 +00:00
|
|
|
convexhull.c \
|
2016-12-30 11:02:34 +00:00
|
|
|
hashtable.c \
|
|
|
|
osutil.cpp
|
2016-12-15 14:19:08 +00:00
|
|
|
|
|
|
|
HEADERS += mainwindow.h \
|
2016-12-19 15:18:23 +00:00
|
|
|
render.h \
|
|
|
|
vector3d.h \
|
|
|
|
draw.h \
|
|
|
|
array.h \
|
|
|
|
bmesh.h \
|
2016-12-26 08:39:01 +00:00
|
|
|
matrix.h \
|
2016-12-28 12:46:25 +00:00
|
|
|
convexhull.h \
|
2016-12-30 11:02:34 +00:00
|
|
|
hashtable.h \
|
|
|
|
3dstruct.h \
|
|
|
|
osutil.h
|