dust3d/build/dust3d.pro

32 lines
434 B
Prolog
Raw Normal View History

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 \
convexhull.c \
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 \
convexhull.h \
hashtable.h \
3dstruct.h \
osutil.h