-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOpenGEV.pro
More file actions
56 lines (37 loc) · 1012 Bytes
/
OpenGEV.pro
File metadata and controls
56 lines (37 loc) · 1012 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2015-10-14T15:51:20
#
#-------------------------------------------------
QT += network
QT -= gui
TARGET = OpenGEV
TEMPLATE = lib
DEFINES += OPENGEV_LIBRARY \
CORE_LIBRARY
SOURCES += opengev.cpp
HEADERS += opengev.h\
opengev_global.h
include(common.pri)
include(device.pri)
include(application.pri)
unix {
target.path = /usr/lib
INSTALLS += target
QMAKE_CXXFLAGS+= -std=c++11
INCLUDEPATH += /usr/local/include/log4cpp \
/usr/include/boost \
/usr/include/pcl-1.7 \
/usr/include/eigen3 \
/usr/include/openni2 \
/usr/local/include/libfreenect2
LIBS += "-L/usr/lib"
LIBS += -lboost_system
LIBS += -lpcl_common
LIBS += -lOpenNI2
LIBS += "-L/usr/local/lib"
LIBS += -llog4cpp
LIBS += -lfreenect2
}
OTHER_FILES += \
opengev_log4cpp.properties