-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrc.pri
More file actions
41 lines (38 loc) · 1.06 KB
/
src.pri
File metadata and controls
41 lines (38 loc) · 1.06 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
INCLUDEPATH += $$PWD
DEPENDPATH += $$PWD
SOURCES += \
$$PWD/main.cpp \
$$PWD/mainwindow.cpp \
$$PWD/mygl.cpp \
$$PWD/utils.cpp \
$$PWD/la.cpp \
$$PWD/drawable.cpp \
$$PWD/scene/quad.cpp \
$$PWD/shaderprograms/shaderprogram.cpp \
$$PWD/shaderprograms/postprocessshader.cpp \
$$PWD/shaderprograms/surfaceshader.cpp \
$$PWD/texture.cpp \
$$PWD/scene/camera.cpp \
$$PWD/tinyobj/tiny_obj_loader.cc \
$$PWD/scene/mesh.cpp \
$$PWD/myglslots.cpp \
$$PWD/cameracontrols.cpp \
$$PWD/shadercontrols.cpp \
$$PWD/openglcontext.cpp
HEADERS += \
$$PWD/la.h \
$$PWD/mainwindow.h \
$$PWD/mygl.h \
$$PWD/utils.h \
$$PWD/drawable.h \
$$PWD/scene/quad.h \
$$PWD/shaderprograms/shaderprogram.h \
$$PWD/shaderprograms/postprocessshader.h \
$$PWD/shaderprograms/surfaceshader.h \
$$PWD/texture.h \
$$PWD/scene/camera.h \
$$PWD/tinyobj/tiny_obj_loader.h \
$$PWD/scene/mesh.h \
$$PWD/shadercontrols.h \
$$PWD/openglcontext.h
FORMS +=