-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCoreLib.pro
76 lines (71 loc) · 1.49 KB
/
CoreLib.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
75
76
#-------------------------------------------------
#
# Project created by QtCreator 2017-08-04T17:20:53
#
#-------------------------------------------------
QT -= gui
TARGET = CoreLib
TEMPLATE = lib
CONFIG += staticlib
QMAKE_CXXFLAGS += -std=c++11
win32:QMAKE_CXXFLAGS += /bigobj
SOURCES += \
nearestneighborcalculator.cpp \
normalestimator.cpp \
partitioner.cpp \
point.cpp \
pointcloud.cpp \
rect.cpp \
geometryutils.cpp \
angleutils.cpp \
line.cpp \
pcacalculator.cpp \
connectivitygraph.cpp \
boundaryvolumehierarchy.cpp \
segmentator.cpp \
primitive.cpp \
plane.cpp \
circle.cpp \
cylinder.cpp \
geometry.cpp \
functor.cpp \
cylinderfunctor.cpp \
pointcloudio.cpp \
unionfind.cpp \
collisiondetector.cpp \
statisticsutils.cpp \
connection.cpp \
extremity.cpp
HEADERS += \
nearestneighborcalculator.h \
normalestimator.h \
partitioner.h \
point.h \
pointcloud.h \
rect.h \
geometryutils.h \
angleutils.h \
line.h \
pcacalculator.h \
connectivitygraph.h \
boundaryvolumehierarchy.h \
segmentator.h \
primitive.h \
plane.h \
circle.h \
cylinder.h \
geometry.h \
functor.h \
cylinderfunctor.h \
cylinderfunctor.h \
pointcloudio.h \
unionfind.h \
collisiondetector.h \
statisticsutils.h \
connection.h \
extremity.h
unix {
target.path = /usr/lib
INSTALLS += target
}
INCLUDEPATH += $$PWD/../eigen3