summaryrefslogtreecommitdiff
path: root/CIAO/examples/space/common/Event_Types.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/examples/space/common/Event_Types.mpc')
-rw-r--r--CIAO/examples/space/common/Event_Types.mpc33
1 files changed, 33 insertions, 0 deletions
diff --git a/CIAO/examples/space/common/Event_Types.mpc b/CIAO/examples/space/common/Event_Types.mpc
new file mode 100644
index 00000000000..537fd8aedaf
--- /dev/null
+++ b/CIAO/examples/space/common/Event_Types.mpc
@@ -0,0 +1,33 @@
+project(Event_Types_stub): ciao_client_dnc {
+
+ sharedname = Event_Types_stub
+ idlflags += -Wb,stub_export_macro=EVENT_TYPES_STUB_Export \
+ -Wb,stub_export_include=Event_Types_stub_export.h \
+ -Wb,skel_export_macro=EVENT_TYPES_SVNT_Export \
+ -Wb,skel_export_include=Event_Types_svnt_export.h
+ dynamicflags = EVENT_TYPES_STUB_BUILD_DLL
+
+ IDL_Files {
+ Event_Types.idl
+ }
+
+ Source_Files {
+ Event_TypesC.cpp
+ }
+}
+
+project(Event_Types_svnt) : ciao_servant_dnc {
+ after += Event_Types_stub
+ sharedname = Event_Types_svnt
+ libs += Event_Types_stub
+
+ dynamicflags = EVENT_TYPES_SVNT_BUILD_DLL
+
+
+ IDL_Files {
+ }
+
+ Source_Files {
+ Event_TypesS.cpp
+ }
+}