-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmri.mpc
77 lines (59 loc) · 1.29 KB
/
mri.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
project(*Common) : dcps {
sharedname = mriCommon
dynamicflags = MRICOMMON_BUILD_DLL
libout = .
requires += tao_orbsvcs
requires += no_opendds_safety_profile
after += Svc_Utils
includes += $(TAO_ROOT)/orbsvcs
includes += $(DDS_ROOT)
idlflags += -I$(TAO_ROOT)/orbsvcs \
-Wb,export_macro=mriCommon_Export \
-Wb,export_include=mriCommon_Export.h
dcps_ts_flags += -Wb,export_macro=mriCommon_Export
TypeSupport_Files {
Mri.idl
}
IDL_Files {
MriTypeSupport.idl
Mri.idl
}
Header_Files {
MriTypeSupportImpl.h
}
Source_Files {
MriTypeSupportImpl.cpp
}
}
project(*v2x) : dcpsexe, svc_utils {
after += *Common
exename = v2x
includes += $(TAO_ROOT)/orbsvcs
libs += mriCommon
dynamicflags = MRICOMMON_HAS_DLL
TypeSupport_Files {
}
IDL_Files {
}
Header_Files {
DataReader_Aux2Strings.h
DataWriter_Aux2Strings.h
ParticipantClass.h
SubscriberClass.h
PublisherClass.h
TimeSync.h
}
Source_Files {
DataReader_Aux2Strings.cpp
DataReaderListenerImpl_Aux2Strings.cpp
DataWriter_Aux2Strings.cpp
ParticipantClass.cpp
PublisherClass.cpp
SubscriberClass.cpp
main.cpp
TimeSyncClient.cpp
TimeSyncServer.cpp
}
Documentation_Files {
}
}