summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc')
-rw-r--r--modules/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc124
1 files changed, 124 insertions, 0 deletions
diff --git a/modules/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc b/modules/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc
new file mode 100644
index 00000000000..577994143a8
--- /dev/null
+++ b/modules/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc
@@ -0,0 +1,124 @@
+// $Id$
+
+project(Inherited_Components_idl_gen) : componentidldefaults {
+ after +=
+ custom_only = 1
+ idlflags += -Wb,stub_export_macro=INHERITED_COMPONENTS_STUB_Export \
+ -Wb,stub_export_include=ComponentC_stub_export.h \
+ -Wb,skel_export_macro=INHERITED_COMPONENTS_SVNT_Export \
+ -Wb,skel_export_include=ComponentC_svnt_export.h \
+ -Wb,exec_export_macro=INHERITED_COMPONENTS_EXEC_Export \
+ -Wb,exec_export_include=ComponentC_exec_export.h \
+ -I ..
+
+ IDL_Files {
+ Inherited_components.idl
+ }
+}
+
+project(Inherited_Components_lem_gen) : ciaoidldefaults {
+ after += Inherited_Components_idl_gen
+ custom_only = 1
+ idlflags += -Wb,stub_export_macro=INHERITED_COMPONENTS_EXEC_Export \
+ -Wb,stub_export_include=ComponentC_exec_export.h \
+ -SS -Gxhst -I ..
+
+ IDL_Files {
+ Inherited_componentsE.idl
+ }
+}
+
+project(Inherited_Components_lem_stub) : ccm_svnt {
+ after += Inherited_Components_lem_gen Inherited_Components_stub
+ libs += ComponentC_stub
+ sharedname = ComponentC_lem_stub
+ dynamicflags = INHERITED_COMPONENTS_EXEC_BUILD_DLL
+
+ IDL_Files {
+ }
+
+ Source_Files {
+ Inherited_componentsEC.cpp
+ }
+
+ Header_Files {
+ Inherited_componentsEC.h
+ ComponentC_exec_export.h
+ }
+
+ Inline_Files {
+ Inherited_componentsEC.inl
+ }
+}
+
+project(Inherited_Components_stub) : ccm_stub {
+ after += Inherited_Components_idl_gen
+ libs +=
+ sharedname = ComponentC_stub
+ dynamicflags = INHERITED_COMPONENTS_STUB_BUILD_DLL
+
+ IDL_Files {
+ }
+
+ Source_Files {
+ Inherited_componentsC.cpp
+ }
+
+ Header_Files {
+ Inherited_componentsC.h
+ ComponentC_stub_export.h
+ }
+
+ Inline_Files {
+ Inherited_componentsC.inl
+ }
+}
+
+project(Inherited_Components_exec) : ciao_executor {
+ after += Inherited_Components_lem_stub Inherited_Components_stub
+ sharedname = ComponentC_exec
+ libs += ComponentC_stub ComponentC_lem_stub
+ dynamicflags = INHERITED_COMPONENTS_EXEC_BUILD_DLL
+
+ IDL_Files {
+ }
+
+ Source_Files {
+ ComponentC_exec.cpp
+ }
+
+ Header_Files {
+ ComponentC_exec.h
+ ComponentC_exec_export.h
+ }
+
+ Inline_Files {
+ }
+}
+
+
+project(Inherited_Components_svnt) : ciao_servant {
+ after += Inherited_Components_lem_stub
+ sharedname = ComponentC_svnt
+ libs += ComponentC_stub ComponentC_lem_stub
+ dynamicflags = INHERITED_COMPONENTS_SVNT_BUILD_DLL
+
+ IDL_Files {
+ }
+
+ Source_Files {
+ Inherited_componentsS.cpp
+ Inherited_components_svnt.cpp
+ }
+
+ Header_Files {
+ Inherited_componentsS.h
+ Inherited_components_svnt.h
+ ComponentC_svnt_export.h
+ }
+
+ Inline_Files {
+ Inherited_componentsS.inl
+ }
+}
+