summaryrefslogtreecommitdiff
path: root/ACE/TAO/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc')
-rw-r--r--ACE/TAO/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc125
1 files changed, 125 insertions, 0 deletions
diff --git a/ACE/TAO/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc b/ACE/TAO/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc
new file mode 100644
index 00000000000..34803606813
--- /dev/null
+++ b/ACE/TAO/CIAO/tests/IDL_Test/Double_Inherited_Component/Inherited_components.mpc
@@ -0,0 +1,125 @@
+// $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, dds4ccm_base {
+ 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, dds4ccm_base {
+ 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, dds4ccm_base {
+ 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, dds4ccm_base, nddslib {
+ after += Inherited_Components_lem_stub DDS4CCM_lem_stub DDS4CCM_skel
+ sharedname = ComponentC_svnt
+ libs += ComponentC_stub ComponentC_lem_stub \
+ DDS4CCM_lem_stub DDS4CCM_skel
+ 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
+ }
+}
+