-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakeLists.txt
568 lines (472 loc) · 14 KB
/
CMakeLists.txt
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
cmake_minimum_required(VERSION 3.12...3.29)
#this is to automatically detect the SDK subfolder of the itom build directory.
if(NOT EXISTS ${ITOM_SDK_DIR})
find_path(ITOM_SDK_DIR "cmake/itom_sdk.cmake"
HINTS "$ENV{ITOM_SDK_ROOT}"
"${CMAKE_CURRENT_BINARY_DIR}/../itom/SDK"
DOC "Path of SDK subfolder of itom root (build) directory")
endif(NOT EXISTS ${ITOM_SDK_DIR})
if(NOT EXISTS ${ITOM_SDK_DIR})
message(FATAL_ERROR "ITOM_SDK_DIR is invalid. Provide itom SDK directory path first")
endif(NOT EXISTS ${ITOM_SDK_DIR})
message(
STATUS "------------------- PROJECT itom_plugins ---------------------")
# Retrieve Version Number and Identifier from GIT-TAG
include(${ITOM_SDK_DIR}/cmake/VersionFromGit.cmake)
version_from_git(
LOG ON
TIMESTAMP "%Y%m%d%H%M%S"
)
# define cmake project and version number
project(itom_plugins VERSION ${GIT_VERSION})
set(itom_plugins_VERSION_IDENTIFIERS ${GIT_IDENTIFIERS})
option(BUILD_TARGET64 "Build for 64 bit target if set to ON or 32 bit if set to OFF." ON)
set(ITOM_SDK_DIR NOTFOUND CACHE PATH "path of SDK subfolder of itom root (build) directory")
message(
STATUS "------------------- Version = ${itom_plugins_VERSION} -----------------------\n")
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ${ITOM_SDK_DIR}/cmake)
find_package(ITOM_SDK COMPONENTS dataobject itomCommonLib itomCommonQtLib itomWidgets REQUIRED)
include(ItomBuildMacros)
# PLUGIN BUILD OPTIONS
set(PLUGIN_BUILD_OPTION "default" CACHE STRING "If ITOM plugin build options: default, setup, test")
set_property(CACHE PLUGIN_BUILD_OPTION PROPERTY STRINGS default setup test)
#include itom_plugin_option macro
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/plugins_options.cmake)
# LibUSB
itom_plugin_option(PLUGIN_LIBUSB)
if(PLUGIN_LIBUSB)
add_subdirectory(LibUSB)
endif(PLUGIN_LIBUSB)
# AerotechA3200
if(NOT BUILD_TARGET64)
itom_plugin_option(PLUGIN_aerotechA3200)
if(PLUGIN_aerotechA3200 )
add_subdirectory(AerotechA3200)
endif(PLUGIN_aerotechA3200)
endif(NOT BUILD_TARGET64)
# AerotechEnsemble
if(BUILD_QTVERSION STREQUAL "Qt5")
itom_plugin_option(PLUGIN_aerotechEnsemble)
if(PLUGIN_aerotechEnsemble)
add_subdirectory(AerotechEnsemble)
endif(PLUGIN_aerotechEnsemble)
endif(BUILD_QTVERSION STREQUAL "Qt5")
# AndorSDK3
if(BUILD_QTVERSION STREQUAL "Qt5")
itom_plugin_option(PLUGIN_andorSDK3)
if(PLUGIN_andorSDK3)
add_subdirectory(AndorSDK3)
endif(PLUGIN_andorSDK3)
endif(BUILD_QTVERSION STREQUAL "Qt5")
# AvantesAvaSpec
itom_plugin_option(PLUGIN_AvantesAvaSpec)
if(PLUGIN_AvantesAvaSpec AND PLUGIN_LIBUSB)
add_subdirectory(AvantesAvaSpec)
endif(PLUGIN_AvantesAvaSpec AND PLUGIN_LIBUSB)
# AVTVimba
itom_plugin_option(PLUGIN_AVTVimba)
if(PLUGIN_AVTVimba)
add_subdirectory(AVTVimba)
endif(PLUGIN_AVTVimba)
# AVTVimbaX
itom_plugin_option(PLUGIN_AVTVimbaX)
if(PLUGIN_AVTVimbaX)
add_subdirectory(AVTVimbaX)
endif(PLUGIN_AVTVimbaX)
# BasicFilters
itom_plugin_option(PLUGIN_BasicFilters)
if(PLUGIN_BasicFilters)
add_subdirectory(BasicFilters)
endif(PLUGIN_BasicFilters)
# BasicGPLFilters
itom_plugin_option(PLUGIN_BasicGPLFilters)
if(PLUGIN_BasicGPLFilters)
add_subdirectory(BasicGPLFilters)
endif(PLUGIN_BasicGPLFilters)
# HidApi
itom_plugin_option(PLUGIN_HidApi)
if(PLUGIN_HidApi AND PLUGIN_LIBUSB)
add_subdirectory(hidapi)
endif(PLUGIN_HidApi AND PLUGIN_LIBUSB)
# cmu1394
itom_plugin_option(PLUGIN_cmu1394)
if(PLUGIN_cmu1394)
add_subdirectory(cmu1394)
endif(PLUGIN_cmu1394)
# CommonVisionBlox
itom_plugin_option(PLUGIN_CommonVisionBlox)
if(PLUGIN_CommonVisionBlox)
add_subdirectory(CommonVisionBlox)
endif(PLUGIN_CommonVisionBlox)
# CyUSB
itom_plugin_option(PLUGIN_CyUSB)
if(PLUGIN_CyUSB)
add_subdirectory(CyUSB)
endif(PLUGIN_CyUSB)
# dataobjectarithmetic
itom_plugin_option(PLUGIN_dataobjectarithmetic)
if(PLUGIN_dataobjectarithmetic)
add_subdirectory(dataobjectarithmetic)
endif(PLUGIN_dataobjectarithmetic)
# DataObjectIO
itom_plugin_option(PLUGIN_DataObjectIO)
if(PLUGIN_DataObjectIO)
add_subdirectory(DataObjectIO)
endif(PLUGIN_DataObjectIO)
# Digital Image Correlation - DIC
itom_plugin_option(PLUGIN_DIC)
if(PLUGIN_DIC)
add_subdirectory(DIC)
endif(PLUGIN_DIC)
# dispWindow
itom_plugin_option(PLUGIN_dispWindow)
if(PLUGIN_dispWindow)
add_subdirectory(dispWindow)
endif(PLUGIN_dispWindow)
# dslrRemote
itom_plugin_option(PLUGIN_DslrRemote)
if(PLUGIN_DslrRemote)
add_subdirectory(DslrRemote)
endif(PLUGIN_DslrRemote)
# dslrRemote2
itom_plugin_option(PLUGIN_DslrRemote2)
if(PLUGIN_DslrRemote2)
add_subdirectory(DslrRemote2)
endif(PLUGIN_DslrRemote2)
# DummyGrabber
itom_plugin_option(PLUGIN_DummyGrabber)
if(PLUGIN_DummyGrabber)
add_subdirectory(DummyGrabber)
endif(PLUGIN_DummyGrabber)
# DummyMotor
itom_plugin_option(PLUGIN_DummyMotor)
if(PLUGIN_DummyMotor)
add_subdirectory(DummyMotor)
endif(PLUGIN_DummyMotor)
# DemoAlgorithms
itom_plugin_option(PLUGIN_DemoAlgorithms)
if(PLUGIN_DemoAlgorithms)
add_subdirectory(DemoAlgorithms)
endif(PLUGIN_DemoAlgorithms)
# FaulhaberMCS
itom_plugin_option(PLUGIN_FaulhaberMCS)
if(PLUGIN_FaulhaberMCS)
add_subdirectory(FaulhaberMCS)
endif(PLUGIN_FaulhaberMCS)
# FFTW-Wrapper
itom_plugin_option(PLUGIN_FFTWFilters)
if(PLUGIN_FFTWFilters)
add_subdirectory(FFTWfilters)
endif(PLUGIN_FFTWFilters)
# FileGrabber
itom_plugin_option(PLUGIN_FileGrabber)
if(PLUGIN_FileGrabber)
add_subdirectory(FileGrabber)
endif(PLUGIN_FileGrabber)
# FittingFilters
itom_plugin_option(PLUGIN_FittingFilters)
if(PLUGIN_FittingFilters)
add_subdirectory(FittingFilters)
endif(PLUGIN_FittingFilters)
# FireGrabber
itom_plugin_option(PLUGIN_FireGrabber)
if(PLUGIN_FireGrabber)
add_subdirectory(FireGrabber)
endif(PLUGIN_FireGrabber)
# FirgelliLAC
itom_plugin_option(PLUGIN_FirgelliLAC)
if(PLUGIN_FirgelliLAC)
add_subdirectory(FirgelliLAC)
endif(PLUGIN_FirgelliLAC)
# FringeProj
itom_plugin_option(PLUGIN_FringeProj)
if(PLUGIN_FringeProj)
add_subdirectory(FringeProj)
endif(PLUGIN_FringeProj)
# GenICam
itom_plugin_option(PLUGIN_GenICam)
if(PLUGIN_GenICam)
add_subdirectory(GenICam)
endif(PLUGIN_GenICam)
# glDisplay
itom_plugin_option(PLUGIN_GLDisplay)
if(PLUGIN_GLDisplay)
add_subdirectory(glDisplay)
endif(PLUGIN_GLDisplay)
# GWInstekPSP
itom_plugin_option(PLUGIN_GWInstekPSP)
if(PLUGIN_GWInstekPSP)
add_subdirectory(GWInstekPSP)
endif(PLUGIN_GWInstekPSP)
# HBM Spider8
itom_plugin_option(PLUGIN_HBMSpider8)
if(PLUGIN_HBMSpider8)
add_subdirectory(HBMSpider8)
endif(PLUGIN_HBMSpider8)
# Holography
itom_plugin_option(PLUGIN_Holography)
if(PLUGIN_Holography)
add_subdirectory(Holography)
endif(PLUGIN_Holography)
# IDSuEye
itom_plugin_option(PLUGIN_IDSuEye)
if(PLUGIN_IDSuEye)
add_subdirectory(IDSuEye)
endif(PLUGIN_IDSuEye)
# LeicaMotorFocus
itom_plugin_option(PLUGIN_LeicaMotorFocus)
if(PLUGIN_LeicaMotorFocus)
add_subdirectory(LeicaMotorFocus)
endif(PLUGIN_LeicaMotorFocus)
# libmodbus
itom_plugin_option(PLUGIN_LibModbus)
if(PLUGIN_LibModbus)
add_subdirectory(libmodbus)
endif(PLUGIN_LibModbus)
# MeasurementComputing
itom_plugin_option(PLUGIN_MeasurementComputing)
if(PLUGIN_MeasurementComputing)
add_subdirectory(MeasurementComputing)
endif(PLUGIN_MeasurementComputing)
# MSMediaFoundation
itom_plugin_option(PLUGIN_MSMediaFoundation)
if(PLUGIN_MSMediaFoundation)
add_subdirectory(MSMediaFoundation)
endif(PLUGIN_MSMediaFoundation)
# NerianSceneScanPro
itom_plugin_option(PLUGIN_NerianSceneScanPro)
if(PLUGIN_NerianSceneScanPro)
add_subdirectory(NerianSceneScanPro)
endif(PLUGIN_NerianSceneScanPro)
# NanotecStepMotor
itom_plugin_option(PLUGIN_NanotecStepMotor)
if(PLUGIN_NanotecStepMotor)
add_subdirectory(NanotecStepMotor)
endif(PLUGIN_NanotecStepMotor)
# Newport2936
itom_plugin_option(PLUGIN_NEWPORT_2936)
if(PLUGIN_NEWPORT_2936)
add_subdirectory(Newport2936)
endif(PLUGIN_NEWPORT_2936)
# Newport Conex LDS
itom_plugin_option(PLUGIN_NEWPORT_CONEXLDS)
if(PLUGIN_NEWPORT_CONEXLDS)
add_subdirectory(NewportConexLDS)
endif(PLUGIN_NEWPORT_CONEXLDS)
# NewportSMC100
itom_plugin_option(PLUGIN_NEWPORT_SMC100)
if(PLUGIN_NEWPORT_SMC100)
add_subdirectory(NewportSMC100)
endif(PLUGIN_NEWPORT_SMC100)
# niDAQmx
itom_plugin_option(PLUGIN_niDAQmx)
if(PLUGIN_niDAQmx)
add_subdirectory(niDAQmx)
endif(PLUGIN_niDAQmx)
# NITWidySWIR
itom_plugin_option(PLUGIN_NITWidySWIR)
if(PLUGIN_NITWidySWIR)
add_subdirectory(NITWidySWIR)
endif(PLUGIN_NITWidySWIR)
# OceanOpticsSpec
itom_plugin_option(PLUGIN_OceanOpticsSpec)
if(PLUGIN_OceanOpticsSpec AND PLUGIN_LIBUSB)
add_subdirectory(OceanOpticsSpec)
endif(PLUGIN_OceanOpticsSpec AND PLUGIN_LIBUSB)
# OpenCVFilters
itom_plugin_option(PLUGIN_OpenCVFilters)
if(PLUGIN_OpenCVFilters)
add_subdirectory(OpenCVFilters)
endif(PLUGIN_OpenCVFilters)
# OpenCVFilters(nonfree)
itom_plugin_option(PLUGIN_OpenCVFilters_Nonfree)
if(PLUGIN_OpenCVFilters_Nonfree)
add_subdirectory(OpenCVFiltersNonFree)
endif(PLUGIN_OpenCVFilters_Nonfree)
# OpenCVGrabber
itom_plugin_option(PLUGIN_OpenCVGrabber)
if(PLUGIN_OpenCVGrabber)
add_subdirectory(OpenCVGrabber)
endif(PLUGIN_OpenCVGrabber)
# OphirPowermeter
itom_plugin_option(PLUGIN_OphirPowermeter)
if(PLUGIN_OphirPowermeter)
add_subdirectory(OphirPowermeter)
endif(PLUGIN_OphirPowermeter)
# PclTools
if(BUILD_WITH_PCL)
itom_plugin_option(PLUGIN_PclTools)
if(PLUGIN_PclTools)
add_subdirectory(PclTools)
endif(PLUGIN_PclTools)
endif(BUILD_WITH_PCL)
# PCOCamera
itom_plugin_option(PLUGIN_PCOCamera)
if(PLUGIN_PCOCamera)
add_subdirectory(PCOCamera)
endif(PLUGIN_PCOCamera)
# PCOPixelFly
itom_plugin_option(PLUGIN_PCOPixelFly)
if(PLUGIN_PCOPixelFly)
add_subdirectory(PCOPixelFly)
endif(PLUGIN_PCOPixelFly)
# PiezosystemJena_NV40_1
itom_plugin_option(PLUGIN_PiezosystemJena_NV40_1)
if(PLUGIN_PiezosystemJena_NV40_1)
add_subdirectory(PiezosystemJena_NV40_1)
endif(PLUGIN_PiezosystemJena_NV40_1)
# PGRFlyCapture
itom_plugin_option(PLUGIN_PGRFlyCapture)
if(PLUGIN_PGRFlyCapture)
add_subdirectory(PGRFlyCapture)
endif(PLUGIN_PGRFlyCapture)
# PIHexapodCtrl
itom_plugin_option(PLUGIN_PIHexapodCtrl)
if(PLUGIN_PIHexapodCtrl)
add_subdirectory(PIHexapodCtrl)
endif(PLUGIN_PIHexapodCtrl)
# PIPiezoCtrl
itom_plugin_option(PLUGIN_PIPiezoCtrl)
if(PLUGIN_PIPiezoCtrl)
add_subdirectory(PIPiezoCtrl)
endif(PLUGIN_PIPiezoCtrl)
# PI_GCS2
itom_plugin_option(PLUGIN_PI_GCS2)
if(PLUGIN_PI_GCS2)
add_subdirectory(PI_GCS2)
endif(PLUGIN_PI_GCS2)
# PmdPico
itom_plugin_option(PLUGIN_PMD_PICO)
if(PLUGIN_PMD_PICO)
add_subdirectory(PmdPico)
endif(PLUGIN_PMD_PICO)
# QuantumComposer
itom_plugin_option(PLUGIN_QuantumComposer)
if(PLUGIN_QuantumComposer)
add_subdirectory(QuantumComposer)
endif(PLUGIN_QuantumComposer)
# rawImport
itom_plugin_option(PLUGIN_rawImport)
if(PLUGIN_rawImport)
add_subdirectory(RawImport)
endif(PLUGIN_rawImport)
# Roughness
itom_plugin_option(PLUGIN_Roughness)
if(PLUGIN_Roughness)
add_subdirectory(Roughness)
endif(PLUGIN_Roughness)
# SerialIO
itom_plugin_option(PLUGIN_SerialIO)
if(PLUGIN_SerialIO)
add_subdirectory(SerialIO)
endif(PLUGIN_SerialIO)
# SuperlumBS
itom_plugin_option(PLUGIN_SuperlumBS)
if(PLUGIN_SuperlumBS)
add_subdirectory(SuperlumBS)
endif(PLUGIN_SuperlumBS)
# SuperlumBL
itom_plugin_option(PLUGIN_SuperlumBL)
if(PLUGIN_SuperlumBL)
add_subdirectory(SuperlumBL)
endif(PLUGIN_SuperlumBL)
# ST8SMC4USB
itom_plugin_option(PLUGIN_ST8SMC4USB)
if(PLUGIN_ST8SMC4USB)
add_subdirectory(ST8SMC4USB)
endif(PLUGIN_ST8SMC4USB)
# ThorlabsBP benchtop piezo
itom_plugin_option(PLUGIN_ThorlabsBP)
if(PLUGIN_ThorlabsBP)
add_subdirectory(ThorlabsBP)
endif(PLUGIN_ThorlabsBP)
# ThorlabsBDCServo benchtop DC Servo
itom_plugin_option(PLUGIN_ThorlabsBDCServo)
if(PLUGIN_ThorlabsBDCServo)
add_subdirectory(ThorlabsBDCServo)
endif(PLUGIN_ThorlabsBDCServo)
# ThorlabsFF filter flipper
itom_plugin_option(PLUGIN_ThorlabsFF)
if(PLUGIN_ThorlabsFF)
add_subdirectory(ThorlabsFF)
endif(PLUGIN_ThorlabsFF)
# ThorlabsTCubeTEC TCube TEC controller (temperature controller)
itom_plugin_option(PLUGIN_ThorlabsTCubeTEC)
if(PLUGIN_ThorlabsTCubeTEC)
add_subdirectory(ThorlabsTCubeTEC)
endif()
# ThorlabsKCubeDCServo KCube DC Servo
itom_plugin_option(PLUGIN_ThorlabsKCubeDCServo)
if(PLUGIN_ThorlabsKCubeDCServo)
add_subdirectory(ThorlabsKCubeDCServo)
endif(PLUGIN_ThorlabsKCubeDCServo)
# ThorlabsKCubeIM KCube inertial motor
itom_plugin_option(PLUGIN_ThorlabsKCubeIM)
if(PLUGIN_ThorlabsKCubeIM)
add_subdirectory(ThorlabsKCubeIM)
endif(PLUGIN_ThorlabsKCubeIM)
# ThorlabsKCubePA KCube position aligner
itom_plugin_option(PLUGIN_ThorlabsKCubePA)
if(PLUGIN_ThorlabsKCubePA)
add_subdirectory(ThorlabsKCubePA)
endif(PLUGIN_ThorlabsKCubePA)
# ThorlabsCCS Spectrometer
itom_plugin_option(PLUGIN_ThorlabsCCS)
if(PLUGIN_ThorlabsCCS)
add_subdirectory(ThorlabsCCS)
endif(PLUGIN_ThorlabsCCS)
# ThorlabsISM stepper motor
itom_plugin_option(PLUGIN_ThorlabsISM)
if(PLUGIN_ThorlabsISM)
add_subdirectory(ThorlabsISM)
endif(PLUGIN_ThorlabsISM)
# ThorlabsDCxCam cameras
itom_plugin_option(PLUGIN_ThorlabsDCxCam)
if(PLUGIN_ThorlabsDCxCam)
add_subdirectory(ThorlabsDCxCam)
endif(PLUGIN_ThorlabsDCxCam)
# Thorlabs Power Meter
itom_plugin_option(PLUGIN_ThorlabsPowerMeter)
if(PLUGIN_ThorlabsPowerMeter)
add_subdirectory(ThorlabsPowerMeter)
endif(PLUGIN_ThorlabsPowerMeter)
# UhlRegister
itom_plugin_option(PLUGIN_UhlRegister)
if(PLUGIN_UhlRegister)
add_subdirectory(UhlRegister)
endif(PLUGIN_UhlRegister)
# UhlText
itom_plugin_option(PLUGIN_UhlText)
if(PLUGIN_UhlText)
add_subdirectory(UhlText)
endif(PLUGIN_UhlText)
# V4L2
itom_plugin_option(PLUGIN_V4L2)
if(PLUGIN_V4L2)
add_subdirectory(V4L2)
endif(PLUGIN_V4L2)
# Vistek
itom_plugin_option(PLUGIN_Vistek)
if(PLUGIN_Vistek)
add_subdirectory(Vistek)
endif(PLUGIN_Vistek)
# VRMagic
itom_plugin_option(PLUGIN_VRMagic)
if(PLUGIN_VRMagic)
add_subdirectory(VRMagic)
endif(PLUGIN_VRMagic)
# x3pio
itom_plugin_option(PLUGIN_x3pio)
if(PLUGIN_x3pio)
add_subdirectory(x3pio)
endif(PLUGIN_x3pio)
# Xeneth
itom_plugin_option(PLUGIN_Xeneth)
if(PLUGIN_Xeneth)
add_subdirectory(Xeneth)
endif(PLUGIN_Xeneth)
# XIMEA
itom_plugin_option(PLUGIN_XIMEA)
if(PLUGIN_XIMEA)
add_subdirectory(Ximea)
endif(PLUGIN_XIMEA)