summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL_Test/IDL3_Plus/KitchenSink.mpc
blob: 25eea2842f98621a006c183f3267d5f8e9ff69ab (plain)
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
// $Id$

project(KitchenSink_idl_gen) : componentidldefaults {
  custom_only = 1
  idlflags += -Gex \
              -Wb,stub_export_macro=KITCHENSINK_STUB_Export \
              -Wb,stub_export_include=KitchenSink_stub_export.h \
              -Wb,skel_export_macro=KITCHENSINK_SVNT_Export \
              -Wb,skel_export_include=KitchenSink_svnt_export.h \
              -Wb,svnt_export_macro=KITCHENSINK_SVNT_Export \
              -Wb,svnt_export_include=KitchenSink_svnt_export.h \
              -Wb,exec_export_macro=KITCHENSINK_EXEC_Export \
              -Wb,exec_export_include=KitchenSink_exec_export.h

  IDL_Files {
    KitchenSink.idl
  }
}

project(KitchenSink_lem_gen) : ciaoidldefaults {
  after += KitchenSink_idl_gen
  custom_only = 1
  idlflags += -Wb,export_macro=KITCHENSINK_EXEC_Export \
              -Wb,export_include=KitchenSink_exec_export.h \
              -SS

  IDL_Files {
    KitchenSinkE.idl
  }
}

project(KitchenSink_stub) : ccm_stub {
  after += KitchenSink_idl_gen

  sharedname = KitchenSink_stub
  dynamicflags += KITCHENSINK_STUB_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
    KitchenSinkC.cpp
  }

  Header_Files {
    KitchenSinkC.h
    KitchenSink_stub_export.h
  }

  Inline_Files {
    KitchenSinkC.inl
  }
}

project(KitchenSink_exec) : ciao_executor {
  after   += KitchenSink_lem_gen KitchenSink_stub
  sharedname = KitchenSink_exec
  libs += KitchenSink_stub

  dynamicflags += KITCHENSINK_EXEC_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
    KitchenSinkEC.cpp
    KitchenSink_exec.cpp
  }

  Header_Files {
    KitchenSinkEC.h
    KitchenSink_exec.h
    KitchenSink_exec_export.h
  }

  Inline_Files {
    KitchenSinkEC.inl
  }
}

project(KitchenSink_svnt) : ciao_servant {
  after      += KitchenSink_exec
  sharedname  = KitchenSink_svnt
  libs       += KitchenSink_exec \
                KitchenSink_stub

  dynamicflags += KITCHENSINK_SVNT_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
    KitchenSinkS.cpp
    KitchenSink_svnt.cpp
  }

  Header_Files {
    KitchenSinkS.h
    KitchenSink_svnt.h
    KitchenSink_svnt_export.h
  }

  Inline_Files {
    KitchenSinkS.inl
  }
}

project(KitchenSink_ConvertIDL3_Plus) : taoidl3toidl2defaults {
  custom_only = 1

  IDL3TOIDL2_Files {
    KitchenSink.idl
  }
}

project(KitchenSink_IDL2_gen) : taoidldefaults, ccm_lw, avoids_ccm_noevent {
  custom_only = 1
  idlflags += -Sm
  after += KitchenSink_ConvertIDL3_Plus

  IDL_Files {
    KitchenSink_IDL2.idl
  }
}

project(KitchenSink_IDL2_skel) : ciao_executor, avoids_ccm_noevent{
  after += KitchenSink_IDL2_gen

  IDL_Files {
  }

  Source_Files {
    KitchenSink_IDL2C.cpp
    KitchenSink_IDL2S.cpp
  }

  Header_Files {
    KitchenSink_IDL2C.h
    KitchenSink_IDL2S.h
  }

  Inline_Files {
    KitchenSink_IDL2C.inl
    KitchenSink_IDL2S.inl
  }
}