-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenGEVTestApplication.pro
74 lines (55 loc) · 1.69 KB
/
OpenGEVTestApplication.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#-------------------------------------------------
#
# Project created by QtCreator 2015-10-15T18:33:41
#
#-------------------------------------------------
QT += core
QT += network
QT += gui
TARGET = OpenGEVTestApplication
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
HEADERS += \
app.h \
simpleviewer.h \
depthobserver.h \
rgbobserver.h \
depthrgbobserver.h
SOURCES += main.cpp \
app.cpp \
simpleviewer.cpp \
depthobserver.cpp \
rgbobserver.cpp \
depthrgbobserver.cpp
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../build/build-opengev-qt4.8GCC-64bit-debug/release/ -lOpenGEV
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../build/build-opengev-qt4.8GCC-64bit-debug/debug/ -lOpenGEV
else:unix {
CONFIG(debug, debug|release): LIBS += -L$$PWD/../build/build-opengev-qt4.8GCC-64bit-debug -lOpenGEV
CONFIG(release, release|debug): LIBS += -L$$PWD/../build/build-opengev-qt4.8GCC-64bit-release -lOpenGEV
}
INCLUDEPATH += $$PWD/../src
DEPENDPATH += $$PWD/../src
unix {
INCLUDEPATH += /usr/include/pcl-1.7 \
/usr/include/eigen3 \
/usr/include/openni2 \
/usr/include/vtk-5.8 \
/usr/include/boost \
/usr/include/flann
LIBS += "-L/usr/lib"
LIBS += -L/usr/local/lib
LIBS += -lboost_system \
LIBS += -llog4cpp
LIBS += -lpcl_common \
-lpcl_visualization
LIBS += -lvtkCommon \
-lvtkGraphics \
-lvtkFiltering \
-lvtkIO \
-lvtkImaging \
-lvtkRendering \
-lQVTK
#LIBS += -lX11
QMAKE_CXXFLAGS+= -std=c++11
}