-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViewerSV.pro
51 lines (38 loc) · 1.03 KB
/
ViewerSV.pro
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
QT += core gui opengl
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = ViewerSV
TEMPLATE = app
CONFIG += c++14
CONFIG(release, release|debug):QMAKE_CXXFLAGS += -Wall -O2 -fopenmp
CONFIG(release, release|debug):DESTDIR = release/
CONFIG(release, release|debug):OBJECTS_DIR = release/
CONFIG(release, release|debug):MOC_DIR = release/
CONFIG(release, release|debug):UI_DIR = release/
CONFIG(debug, release|debug):DESTDIR = debug/
CONFIG(debug, release|debug):OBJECTS_DIR = debug/
CONFIG(debug, release|debug):MOC_DIR = debug/
CONFIG(debug, release|debug):UI_DIR = debug/
INCLUDEPATH += /usr/include/eigen3/
LIBS += -lGLEW -lboost_system -lboost_filesystem -fopenmp
SOURCES += \
camera.cc \
cube.cc \
glwidget.cc \
main.cc \
main_window.cc \
volume.cc \
volume_io.cc \
*.cpp
HEADERS += \
camera.h \
cube.h \
glwidget.h \
main_window.h \
volume.h \
volume_io.h \
*.hpp\
FORMS += \
main_window.ui
DISTFILES += \
shaders/raycast.frag \
shaders/raycast.vert