Subversion Repositories seema-scanner

Rev

Rev 4 | Rev 8 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4 Rev 7
1
#------------------------------------------------------------
1
#------------------------------------------------------------
2
#
2
#
3
# SMScanner
3
# SMScanner
4
#
4
#
5
# Control Interface and point cloud construction interface
5
# Control Interface and point cloud construction interface
6
# for the SeeMa Lab Structured Light Scanner.
6
# for the SeeMa Lab Structured Light Scanner.
7
#
7
#
8
# Image Analysis and Computer Graphics, DTU, 2014
8
# Image Analysis and Computer Graphics, DTU, 2014
9
#
9
#
10
#------------------------------------------------------------
10
#------------------------------------------------------------
11
 
11
 
12
QT       += core gui
12
QT       += core gui
13
 
13
 
14
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
14
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
15
 
15
 
16
TARGET = SMScanner
16
TARGET = SMScanner
17
TEMPLATE = app
17
TEMPLATE = app
18
 
18
 
19
HEADERS  += SMScanner.h \
19
HEADERS  += SMScanner.h \
20
        SMVideoWidget.h \
20
        SMVideoWidget.h \
21
        SMPointCloudWidget.h \
21
        SMPointCloudWidget.h \
22
        camera/Camera.h \
22
        camera/Camera.h \
23
        projector/Projector.h \
23
        projector/Projector.h \
24
        projector/OpenGLContext.h \
24
        projector/OpenGLContext.h \
25
        codec/Codec.h \
25
        codec/Codec.h \
26
        codec/CodecGrayCode.h \
26
        codec/CodecGrayCode.h \
27
        codec/CodecPhaseShift2x3.h \
27
        codec/CodecPhaseShift2x3.h \
28
        triangulator/Triangulator.h \
28
        triangulator/Triangulator.h \
29
        cvtools.h \
29
        cvtools.h \
30
        SMCalibrationParams.h \
30
        SMCalibrationParams.h \
31
        SMCaptureWorker.h \
31
        SMCaptureWorker.h \
32
        SMTriangulationWorker.h \
32
        SMTriangulationWorker.h \
33
        SMPreferenceDialog.h
33
        SMPreferenceDialog.h
34
 
34
 
35
SOURCES += main.cpp\
35
SOURCES += main.cpp\
36
        SMScanner.cpp \
36
        SMScanner.cpp \
37
        SMVideoWidget.cpp \
37
        SMVideoWidget.cpp \
38
        SMPointCloudWidget.cpp \
38
        SMPointCloudWidget.cpp \
39
        camera/Camera.cpp \
39
        camera/Camera.cpp \
40
        codec/CodecGrayCode.cpp \
40
        codec/CodecGrayCode.cpp \
41
        codec/CodecPhaseShift2x3.cpp \
41
        codec/CodecPhaseShift2x3.cpp \
42
        triangulator/Triangulator.cpp \
42
        triangulator/Triangulator.cpp \
43
        cvtools.cpp \
43
        cvtools.cpp \
44
        SMCalibrationParams.cpp \
44
        SMCalibrationParams.cpp \
45
        SMCaptureWorker.cpp \
45
        SMCaptureWorker.cpp \
46
        SMTriangulationWorker.cpp \
46
        SMTriangulationWorker.cpp \
47
        SMPreferenceDialog.cpp
47
        SMPreferenceDialog.cpp
48
 
48
 
49
 
49
 
50
FORMS    += SMScanner.ui \
50
FORMS    += SMScanner.ui \
51
    SMAboutDialog.ui \
51
    SMAboutDialog.ui \
52
        SMPreferenceDialog.ui
52
        SMPreferenceDialog.ui
53
 
53
 
54
INCLUDEPATH += camera/ projector/ codec/ triangulator/
54
INCLUDEPATH += camera/ projector/ codec/ triangulator/
55
 
55
 
56
 
56
 
57
# Operating System dependant linking and including
57
# Operating System dependant linking and including
58
# Linux
58
# Linux
59
unix:!macx {
59
unix:!macx {
60
    CONFIG += link_pkgconfig
60
    CONFIG += link_pkgconfig
61
    # Link VTK and Boost (no pkg-config)
61
    # Link VTK and Boost (no pkg-config)
62
    INCLUDEPATH += /usr/include/vtk-5.8/
62
    INCLUDEPATH += /usr/include/vtk-5.8/
63
    LIBS += -lQVTK -lvtkCommon -lvtkFiltering -lvtkRendering -lvtkIO -lvtkGraphics
63
    LIBS += -lQVTK -lvtkCommon -lvtkFiltering -lvtkRendering -lvtkIO -lvtkGraphics
64
    # PCL pkg-config workaround
64
    # PCL pkg-config workaround
65
    LIBS += -lboost_system -lpcl_visualization -lpcl_common -lpcl_io -lpcl_search -lpcl_surface
65
    LIBS += -lboost_system -lpcl_visualization -lpcl_common -lpcl_io -lpcl_search -lpcl_surface
66
    # PKG-config libs
66
    # PKG-config libs
67
    INCLUDEPATH += /usr/local/include/pcl-1.7 /usr/include/eigen3/
67
    INCLUDEPATH += /usr/local/include/pcl-1.7 /usr/include/eigen3/
68
    PKGCONFIG += gl glu x11 xrandr opencv pcl_registration-1.7 pcl_visualization-1.7 pcl_surface-1.7 pcl_search-1.7 pcl_filters-1.7 pcl_kdtree-1.7 pcl_tracking-1.7 flann eigen3
68
    PKGCONFIG += gl glu x11 xrandr opencv pcl_registration-1.7 pcl_visualization-1.7 pcl_surface-1.7 pcl_search-1.7 pcl_filters-1.7 pcl_kdtree-1.7 pcl_tracking-1.7 flann eigen3
69
}
69
}
70
# Windows
70
# Windows
71
win32 {
71
win32 {
72
    # Boost join
72
    # Boost join
73
    DEFINES += DBOOST_TT_HAS_OPERATOR_HPP_INCLUDED
73
    DEFINES += DBOOST_TT_HAS_OPERATOR_HPP_INCLUDED
74
 
74
 
75
    # opencv
75
    # opencv
76
    INCLUDEPATH += "$$(OPENCV_INCLUDE_DIR)/" #C:\opencv\build\include
76
    INCLUDEPATH += "$$(OPENCV_INCLUDE_DIR)/" #C:\opencv\build\include
77
 
77
 
78
    CONFIG(debug,debug|release){
78
    CONFIG(debug,debug|release){
79
    #debug
79
    #debug
80
    LIBS += -L"$$(OPENCV_DIR)" \ #C:\opencv\build\x64\vc10\lib
80
    LIBS += -L"$$(OPENCV_DIR)" \ #C:\opencv\build\x64\vc10\lib
81
            -lopencv_core247d \
81
            -lopencv_core247d \
82
            -lopencv_highgui247d \
82
            -lopencv_highgui247d \
83
            -lopencv_imgproc247d \
83
            -lopencv_imgproc247d \
84
            -lopencv_calib3d247d
84
            -lopencv_calib3d247d
85
    } else {
85
    } else {
86
    #release
86
    #release
87
    LIBS += -L"$$(OPENCV_DIR)" \
87
    LIBS += -L"$$(OPENCV_DIR)" \
88
            -lopencv_core247 \
88
            -lopencv_core247 \
89
            -lopencv_highgui247 \
89
            -lopencv_highgui247 \
90
            -lopencv_imgproc247 \
90
            -lopencv_imgproc247 \
91
            -lopencv_calib3d247
91
            -lopencv_calib3d247
92
    }
92
    }
93
 
93
 
94
    # pcl
94
    # pcl
95
    INCLUDEPATH += "$$(PCL_INCLUDE_DIR)/" #C:\Program Files\PCL\include\pcl-1.7
95
    INCLUDEPATH += "$$(PCL_INCLUDE_DIR)/" #C:\Program Files\PCL\include\pcl-1.7
96
 
96
 
97
    CONFIG(debug,debug|release){
97
    CONFIG(debug,debug|release){
98
    #debug
98
    #debug
99
    LIBS += -L"$$(PCL_DIR)" \ #C:\Program Files\PCL\lib
99
    LIBS += -L"$$(PCL_DIR)" \ #C:\Program Files\PCL\lib
100
            -lpcl_visualization_debug \
100
            -lpcl_visualization_debug \
101
            -lpcl_io_debug \
101
            -lpcl_io_debug \
102
            -lpcl_common_debug \
102
            -lpcl_common_debug \
103
            -lpcl_features_debug \
103
            -lpcl_features_debug \
104
            -lpcl_filters_debug \
104
            -lpcl_filters_debug \
105
            -lpcl_io_debug \
105
            -lpcl_io_debug \
106
            -lpcl_io_ply_debug \
106
            -lpcl_io_ply_debug \
107
            -lpcl_kdtree_debug \
107
            -lpcl_kdtree_debug \
108
            -lpcl_keypoints_debug \
108
            -lpcl_keypoints_debug \
109
            -lpcl_octree_debug \
109
            -lpcl_octree_debug \
110
            -lpcl_registration_debug \
110
            -lpcl_registration_debug \
111
            -lpcl_sample_consensus_debug \
111
            -lpcl_sample_consensus_debug \
112
            -lpcl_search_debug \
112
            -lpcl_search_debug \
113
            -lpcl_segmentation_debug \
113
            -lpcl_segmentation_debug \
114
            -lpcl_surface_debug \
114
            -lpcl_surface_debug \
115
            -lpcl_tracking_debug \
115
            -lpcl_tracking_debug \
116
            -lpcl_visualization_debug
116
            -lpcl_visualization_debug
117
    } else {
117
    } else {
118
    # release
118
    # release
119
    LIBS += -L"$$(PCL_DIR)" \
119
    LIBS += -L"$$(PCL_DIR)" \
120
            -lpcl_visualization_release \
120
            -lpcl_visualization_release \
121
            -lpcl_io_release \
121
            -lpcl_io_release \
122
            -lpcl_common_release \
122
            -lpcl_common_release \
123
            -lpcl_features_release \
123
            -lpcl_features_release \
124
            -lpcl_filters_release \
124
            -lpcl_filters_release \
125
            -lpcl_io_release \
125
            -lpcl_io_release \
126
            -lpcl_io_ply_release \
126
            -lpcl_io_ply_release \
127
            -lpcl_kdtree_release \
127
            -lpcl_kdtree_release \
128
            -lpcl_keypoints_release \
128
            -lpcl_keypoints_release \
129
            -lpcl_octree_release \
129
            -lpcl_octree_release \
130
            -lpcl_registration_release \
130
            -lpcl_registration_release \
131
            -lpcl_sample_consensus_release \
131
            -lpcl_sample_consensus_release \
132
            -lpcl_search_release \
132
            -lpcl_search_release \
133
            -lpcl_segmentation_release \
133
            -lpcl_segmentation_release \
134
            -lpcl_surface_release \
134
            -lpcl_surface_release \
135
            -lpcl_tracking_release \
135
            -lpcl_tracking_release \
136
            -lpcl_visualization_release
136
            -lpcl_visualization_release
137
    }
137
    }
138
 
138
 
139
    # pcl dependencies
139
    # pcl dependencies
140
    INCLUDEPATH += "$$(BOOST_ROOT)/include" \
140
    INCLUDEPATH += "$$(BOOST_ROOT)/include" \
141
                   "$$(EIGEN_ROOT)/include" \
141
                   "$$(EIGEN_ROOT)/include" \
142
                   "$$(FLANN_ROOT)/include"
142
                   "$$(FLANN_ROOT)/include"
143
    LIBS += -L"$$(BOOST_ROOT)/lib" -lboost_system-vc100-mt-1_50 -lboost_system-vc100-mt-gd-1_50
143
    LIBS += -L"$$(BOOST_ROOT)/lib" -lboost_system-vc100-mt-1_50 -lboost_system-vc100-mt-gd-1_50
144
 
144
 
145
    # vtk
145
    # vtk
146
    INCLUDEPATH += "$$(VTK_INCLUDE_DIR)" #C:\Program Files\VTK\include\vtk-5.10
146
    INCLUDEPATH += "$$(VTK_INCLUDE_DIR)" #C:\Program Files\VTK\include\vtk-5.10
147
 
147
 
148
    CONFIG(debug,debug|release){
148
    CONFIG(debug,debug|release){
149
    #debug
149
    #debug
150
    LIBS += -L"$$(VTK_DIR)" \ #C:\Program Files\VTK\lib\vtk-5.10
150
    LIBS += -L"$$(VTK_DIR)" \ #C:\Program Files\VTK\lib\vtk-5.10
151
            -lvtkGraphics-gd \
151
            -lvtkGraphics-gd \
152
            -lQVTK-gd \
152
            -lQVTK-gd \
153
            -lvtkCommon-gd \
153
            -lvtkCommon-gd \
154
            -lvtkFiltering-gd \
154
            -lvtkFiltering-gd \
155
            -lvtkRendering-gd \
155
            -lvtkRendering-gd \
156
            -lvtkIO-gd \
156
            -lvtkIO-gd \
157
            -lvtkpng-gd \
157
            -lvtkpng-gd \
158
            -lvtksys-gd \
158
            -lvtksys-gd \
159
            -lvtktiff-gd \
159
            -lvtktiff-gd \
160
            -lvtkjpeg-gd \
160
            -lvtkjpeg-gd \
161
            -lvtkexpat-gd \
161
            -lvtkexpat-gd \
162
            -lvtkzlib-gd
162
            -lvtkzlib-gd
163
    } else {
163
    } else {
164
    # release
164
    # release
165
    LIBS += -L"$$(VTK_DIR)" \
165
    LIBS += -L"$$(VTK_DIR)" \
166
            -lvtkGraphics \
166
            -lvtkGraphics \
167
            -lQVTK \
167
            -lQVTK \
168
            -lvtkCommon \
168
            -lvtkCommon \
169
            -lvtkFiltering \
169
            -lvtkFiltering \
170
            -lvtkRendering \
170
            -lvtkRendering \
171
            -lvtkIO \
171
            -lvtkIO \
172
            -lvtkpng \
172
            -lvtkpng \
173
            -lvtksys \
173
            -lvtksys \
174
            -lvtktiff \
174
            -lvtktiff \
175
            -lvtkjpeg \
175
            -lvtkjpeg \
176
            -lvtkexpat \
176
            -lvtkexpat \
177
            -lvtkzlib
177
            -lvtkzlib
178
    }
178
    }
179
 
179
 
180
}
180
}
181
# Mac OS X
181
# Mac OS X
182
macx {
182
macx {
183
    INCLUDEPATH += /opt/local/include/vtk-5.10/
183
    INCLUDEPATH += /opt/local/include/vtk-5.10/
184
    LIBS += -L/opt/local/lib/vtk-5.10/ -lQVTK -lvtkCommon -lvtkFiltering -lvtkRendering -lvtkIO -lvtkGraphics
184
    LIBS += -L/opt/local/lib/vtk-5.10/ -lQVTK -lvtkCommon -lvtkFiltering -lvtkRendering -lvtkIO -lvtkGraphics
185
    LIBS += -L/opt/local/lib/ -lboost_system-mt
185
    LIBS += -L/opt/local/lib/ -lboost_system-mt
186
    CONFIG += link_pkgconfig
186
    CONFIG += link_pkgconfig
187
    PKGCONFIG += opencv pcl_visualization-1.7 pcl_filters-1.7 pcl_search-1.7 pcl_registration-1.7
187
    PKGCONFIG += opencv pcl_visualization-1.7 pcl_filters-1.7 pcl_search-1.7 pcl_registration-1.7
188
    DEFINES += BOOST_TT_HAS_OPERATOR_HPP_INCLUDED
188
    DEFINES += BOOST_TT_HAS_OPERATOR_HPP_INCLUDED
189
}
189
}
190
 
190
 
191
 
191
 
192
# Compile with system dependent OpenGL Context code
192
# Compile with system dependent OpenGL Context code
193
unix:!macx{
193
unix:!macx{
194
    SOURCES += projector/OpenGLContext.Unix.cpp
194
    SOURCES += projector/OpenGLContext.Unix.cpp
195
    LIBS += -lXxf86vm
195
    LIBS += -lXxf86vm
196
}
196
}
197
win32{
197
win32{
198
    SOURCES += projector/OpenGLContext.Win.cpp
198
    SOURCES += projector/OpenGLContext.Win.cpp
199
}
199
}
200
macx{
200
macx{
201
    CONFIG += objective_c
201
    CONFIG += objective_c
202
    OBJECTIVE_SOURCES += projector/OpenGLContext.Mac.mm
202
    OBJECTIVE_SOURCES += projector/OpenGLContext.Mac.mm
203
    LIBS += -framework Cocoa -framework OpenGL
203
    LIBS += -framework Cocoa -framework OpenGL
204
#    SOURCES += projector/OpenGLContext.GLFW.cpp
204
#    SOURCES += projector/OpenGLContext.GLFW.cpp
205
#    LIBS += -L/usr/local/lib/ -lglfw3
205
#    LIBS += -L/usr/local/lib/ -lglfw3
206
}
206
}
207
 
207
 
208
 
208
 
209
# Compile with specific camera driver bindings
209
# Compile with specific camera driver bindings
210
# libdc1394
210
# libdc1394
211
unix:!macx:exists(/usr/include/dc1394/dc1394.h) {
211
unix:!macx:exists(/usr/include/dc1394/dc1394.h) {
212
    DEFINES += WITH_CAMERAIIDC
212
    DEFINES += WITH_CAMERAIIDC
213
    LIBS += -ldc1394
213
    LIBS += -ldc1394
214
}
214
}
215
macx:exists(/usr/local/include/dc1394/dc1394.h) {
215
macx:exists(/usr/local/include/dc1394/dc1394.h) {
216
    DEFINES += WITH_CAMERAIIDC
216
    DEFINES += WITH_CAMERAIIDC
217
    LIBS += -ldc1394
217
    LIBS += -ldc1394
218
}
218
}
219
contains(DEFINES, WITH_CAMERAIIDC) {
219
contains(DEFINES, WITH_CAMERAIIDC) {
220
    HEADERS += camera/CameraIIDC.h
220
    HEADERS += camera/CameraIIDC.h
221
    SOURCES += camera/CameraIIDC.cpp
221
    SOURCES += camera/CameraIIDC.cpp
222
}
222
}
223
# IDS Imaging libueye
223
# IDS Imaging libueye
224
unix:!macx:exists(/usr/include/ueye.h) {
224
unix:!macx:exists(/usr/include/ueye.h) {
225
    DEFINES += WITH_CAMERAIDSIMAGING
225
    DEFINES += WITH_CAMERAIDSIMAGING
226
    LIBS += -lueye_api
226
    LIBS += -lueye_api
227
}
227
}
228
win32:exists("C:/Program Files/IDS/uEye/Develop/include/uEye.h"){
228
win32:exists("C:/Program Files/IDS/uEye/Develop/include/uEye.h"){
229
    DEFINES += WITH_CAMERAIDSIMAGING
229
    DEFINES += WITH_CAMERAIDSIMAGING
230
    INCLUDEPATH += "C:/Program Files/IDS/uEye/Develop/include/"
230
    INCLUDEPATH += "C:/Program Files/IDS/uEye/Develop/include/"
231
    LIBS += -L"C:/Program Files/IDS/uEye/Develop/Lib" -luEye_api_64
231
    LIBS += -L"C:/Program Files/IDS/uEye/Develop/Lib" -luEye_api_64
232
}
232
}
233
contains(DEFINES, WITH_CAMERAIDSIMAGING) {
233
contains(DEFINES, WITH_CAMERAIDSIMAGING) {
234
    HEADERS += camera/CameraIDSImaging.h
234
    HEADERS += camera/CameraIDSImaging.h
235
    SOURCES += camera/CameraIDSImaging.cpp
235
    SOURCES += camera/CameraIDSImaging.cpp
236
}
236
}
237
# XIMEA libm3api
237
# XIMEA libm3api
238
unix:!macx:exists(/opt/XIMEA/include/xiApi.h){
238
unix:!macx:exists(/opt/XIMEA/include/xiApi.h){
239
    INCLUDEPATH += /opt/XIMEA/include
239
    INCLUDEPATH += /opt/XIMEA/include
240
    DEFINES += WITH_CAMERAXIMEA
240
    DEFINES += WITH_CAMERAXIMEA
241
    LIBS += -lm3api
241
    LIBS += -lm3api
242
}
242
}
243
win32:exists("C:/XIMEA/API/xiApi.h"){
243
win32:exists("C:/XIMEA/API/xiApi.h"){
244
    DEFINES += WITH_CAMERAXIMEA
244
    DEFINES += WITH_CAMERAXIMEA
245
    INCLUDEPATH += "C:/XIMEA/API"
245
    INCLUDEPATH += "C:/XIMEA/API"
246
    LIBS += -L"C:/XIMEA/API/x64" -lm3apiX64
246
    LIBS += -L"C:/XIMEA/API/x64" -lm3apiX64
247
}
247
}
248
macx:exists(/Library/Frameworks/m3api.framework/m3api){
248
macx:exists(/Library/Frameworks/m3api.framework/m3api){
249
    DEFINES += WITH_CAMERAXIMEA
249
    DEFINES += WITH_CAMERAXIMEA
250
    INCLUDEPATH += /Library/Frameworks/m3api.framework/Headers/
250
    INCLUDEPATH += /Library/Frameworks/m3api.framework/Headers/
251
    LIBS += -framework m3api
251
    LIBS += -framework m3api
252
}
252
}
253
contains(DEFINES, WITH_CAMERAXIMEA) {
253
contains(DEFINES, WITH_CAMERAXIMEA) {
254
    HEADERS += camera/CameraXIMEA.h
254
    HEADERS += camera/CameraXIMEA.h
255
    SOURCES += camera/CameraXIMEA.cpp
255
    SOURCES += camera/CameraXIMEA.cpp
256
}
256
}
257
# Point Grey flycapture
257
# Point Grey flycapture
258
unix:!macx:exists(/usr/include/flycapture/FlyCapture2.h){
258
unix:!macx:exists(/usr/include/flycapture/FlyCapture2.h){
259
    INCLUDEPATH += /usr/include/flycapture
259
    INCLUDEPATH += /usr/include/flycapture
260
    DEFINES += WITH_CAMERAPOINTGREY
260
    DEFINES += WITH_CAMERAPOINTGREY
261
    LIBS += -lflycapture
261
    LIBS += -lflycapture
262
}
262
}
263
win32:exists("C:/Program Files/Point Grey Research/FlyCapture2/include/FlyCapture2.h"){
263
win32:exists("C:/Program Files/Point Grey Research/FlyCapture2/include/FlyCapture2.h"){
264
    DEFINES += WITH_CAMERAPOINTGREY
264
    DEFINES += WITH_CAMERAPOINTGREY
265
    INCLUDEPATH += "C:/Program Files/Point Grey Research/FlyCapture2/include/"
265
    INCLUDEPATH += "C:/Program Files/Point Grey Research/FlyCapture2/include/"
266
    LIBS += -L"C:/Program Files/Point Grey Research/FlyCapture2/lib64" -lFlyCapture2
266
    LIBS += -L"C:/Program Files/Point Grey Research/FlyCapture2/lib64" -lFlyCapture2
267
}
267
}
268
contains(DEFINES, WITH_CAMERAPOINTGREY) {
268
contains(DEFINES, WITH_CAMERAPOINTGREY) {
269
    HEADERS += camera/CameraPointGrey.h
269
    HEADERS += camera/CameraPointGrey.h
270
    SOURCES += camera/CameraPointGrey.cpp
270
    SOURCES += camera/CameraPointGrey.cpp
271
}
271
}
272
 
272
 
273
 
273
 
274
# Compile with direct projector APIs
-
 
275
# LC3000 Api
-
 
276
DEFINES += WITH_LC3000API
-
 
277
HEADERS += projector/LC3000API/lcr_cmd.h
-
 
278
SOURCES += projector/ProjectorLC3000.cpp \
-
 
279
        projector/LC3000API/lcr_cmd.cpp \
-
 
280
        projector/LC3000API/lcr_packetizer.cpp \
-
 
281
        projector/LC3000API/tcp_client.cpp
-
 
282
 
-
 
283
## LC4500 Api
-
 
284
DEFINES += WITH_LC4500API
-
 
285
HEADERS += projector/LC4500API/API.h
-
 
286
SOURCES += projector/ProjectorLC4500.cpp \
-
 
287
        projector/LC4500API/API.cpp \
-
 
288
        projector/LC4500API/usb.cpp
-
 
289
macx:SOURCES += projector/LC4500API/hid.Mac.c
-
 
290
unix:!macx{
-
 
291
    SOURCES += projector/LC4500API/hid.Unix.c
-
 
292
    CONFIG += link_pkgconfig
-
 
293
    PKGCONFIG += libudev
-
 
294
}
-
 
295
win32{
-
 
296
    SOURCES += projector/LC4500API/hid.Win.c
-
 
297
    LIBS += -lsetupapi
-
 
298
}
-
 
299
 
-
 
300
 
-
 
301
 
274
 
302
 
275