-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathqtTest.pro
More file actions
183 lines (157 loc) · 4.04 KB
/
qtTest.pro
File metadata and controls
183 lines (157 loc) · 4.04 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#-------------------------------------------------
#
# Project created by QtCreator 2012-09-17T22:38:59
#
#-------------------------------------------------
QT += core gui opengl multimedia multimediawidgets
CONFIG += static noframework
TARGET = FabScan100
TEMPLATE = app
CONFIG += precompile_header
PRECOMPILED_HEADER = staticHeaders.h
include(qextserialport-1.2beta2/src/qextserialport.pri)
SOURCES += main.cpp\
mainwindow.cpp \
geometryengine.cpp \
mainwidget.cpp \
fscontroller.cpp \
fsmodel.cpp \
fsserial.cpp \
fsdialog.cpp \
fscontrolpanel.cpp \
fslaser.cpp \
fsturntable.cpp \
fsvision.cpp \
fswebcam.cpp \
fsconfiguration.cpp
HEADERS += mainwindow.h \
geometryengine.h \
mainwidget.h \
fscontroller.h \
fsmodel.h \
staticHeaders.h \
fsserial.h \
fswebcam.h \
fsdialog.h \
fscontrolpanel.h \
fsdefines.h \
fsgeometries.h \
fslaser.h \
fsvision.h \
fsturntable.h \
fsconfiguration.h
FORMS += mainwindow.ui \
fsdialog.ui \
fscontrolpanel.ui
OTHER_FILES += \
fshader.glsl \
vshader.glsl
RESOURCES += \
shaders.qrc \
textures.qrc
macx {
message("Buildng for Mac.")
INCLUDEPATH += /usr/local/Cellar/opencv/2.4.2/include
LIBS += -L/usr/local/Cellar/opencv/2.4.2 \
-lopencv_core \
-lopencv_highgui \
-lopencv_imgproc \
-lopencv_features2d \
-lopencv_calib3d
#LIBS += -L/usr/local/lib/vtk-5.10 \
#-lvtkCommon \
#-lvtkWidgets \
#-lvtkIO \
#-lvtkImaging \
#-lvtkHybrid \
#-lvtkVolumeRendering \
#-lvtkRendering \
#-lvtkGraphics \
#-lvtkFiltering \
#-lvtksys
INCLUDEPATH += /usr/local/include/pcl-1.7
LIBS += -L/usr/local/lib \
-lpcl_common \
-lpcl_io \
-lpcl_io_ply \
-lpcl_sample_consensus \
-lpcl_octree \
-lpcl_ml \
-lpcl_filters \
-lpcl_kdtree \
-lpcl_registration \
-lpcl_features \
-lpcl_segmentation \
-lpcl_surface \
-lpcl_search
#INCLUDEPATH += /usr/local/Cellar/vtk/5.10.0/include/vtk-5.10
INCLUDEPATH += /usr/local/Cellar/eigen/3.1.2/include/eigen3
INCLUDEPATH += /usr/local/Cellar/flann/1.7.1/include
INCLUDEPATH += /usr/local/Cellar/boost/1.51.0/include/boost
LIBS += -L/usr/local/Cellar/boost/1.51.0 \
-lboost_chrono-mt \
-lboost_context-mt \
-lboost_date_time-mt \
-lboost_exception-mt \
-lboost_filesystem-mt \
-lboost_graph-mt \
-lboost_iostreams-mt \
-lboost_locale-mt \
-lboost_math_c99-mt \
-lboost_math_c99f-mt \
-lboost_math_c99l-mt \
-lboost_math_tr1-mt \
-lboost_math_tr1f-mt \
-lboost_math_tr1l-mt \
-lboost_prg_exec_monitor-mt \
-lboost_program_options-mt \
-lboost_python-mt \
-lboost_random-mt \
-lboost_regex-mt \
-lboost_serialization-mt \
-lboost_signals-mt \
-lboost_system-mt \
#-lboost_test_exec_monitor-mt \
-lboost_thread-mt \
-lboost_timer-mt \
-lboost_unit_test_framework-mt \
-lboost_wave-mt \
-lboost_wserialization-mt \
}
linux-g++ {
message("Buildng for Linux.")
#CONFIG += link_pkgconfig
#PKGCONFIG += opencv
#INCLUDEPATH += /usr/local/include/opencv2/
INCLUDEPATH += /usr/include/boost/
LIBS += -L/usr/lib/ \
-lboost_system \
-lboost_filesystem \
DEFINES += LINUX
INCLUDEPATH += /usr/include/eigen3/
INCLUDEPATH += /usr/include/boost/
LIBS += -L/usr/lib/ \
-lboost_system \
-lboost_filesystem \
LIBS += -L/usr/local/lib/ \
-lopencv_core \
-lopencv_highgui \
-lopencv_imgproc \
-lopencv_features2d \
-lopencv_calib3d
INCLUDEPATH += /usr/include/
INCLUDEPATH += /usr/include/pcl-1.6
LIBS += -L/usr/lib \
-lpcl_common \
-lpcl_io \
-lpcl_filters \
-lpcl_kdtree \
-lpcl_registration \
-lpcl_features \
-lpcl_segmentation \
-lpcl_surface \
-lpcl_search
}
win32 {
message("Buildng for Win. not working yet...")
}