-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathovidds.mpc
63 lines (48 loc) · 1.22 KB
/
ovidds.mpc
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
project(DDS*idl): dcps_idl_only_lib {
idlflags += -Wb,stub_export_include=ovidds_export.h \
-Wb,stub_export_macro=ovidds_Export -SS
dcps_ts_flags += -Wb,export_macro=ovidds_Export
dynamicflags += OVIDDS_BUILD_DLL
TypeSupport_Files {
ovidds.idl
}
}
project(DDS*VideoCapture): dcpsexe, dcps_rtps_udp {
exename = video_capture
after += DDS*idl
libs += DDS*idl
lit_libs += opencv_core opencv_videoio opencv_highgui
includes += /usr/include/opencv4/
Idl_Files {
}
Source_Files {
video_capture.cpp
ovidds_common.cpp
}
}
project(DDS*VideoToRoi): dcpsexe, dcps_rtps_udp {
exename = roi_generator
after += DDS*idl
libs += DDS*idl
lit_libs += opencv_core opencv_imgproc opencv_videoio opencv_highgui opencv_objdetect
includes += /usr/include/opencv4/
Idl_Files {
}
Source_Files {
roi_generator.cpp
ovidds_common.cpp
}
}
project(DDS*VideoRoiDisplay): dcpsexe, dcps_rtps_udp {
exename = video_roi_display
after += DDS*idl
libs += DDS*idl
lit_libs += opencv_core opencv_imgproc opencv_highgui
includes += /usr/include/opencv4/
Idl_Files {
}
Source_Files {
video_roi_display.cpp
ovidds_common.cpp
}
}