summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Inherited_Operation/InheritedOp.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Inherited_Operation/InheritedOp.mpc')
-rw-r--r--TAO/tests/IDL_Inherited_Operation/InheritedOp.mpc54
1 files changed, 54 insertions, 0 deletions
diff --git a/TAO/tests/IDL_Inherited_Operation/InheritedOp.mpc b/TAO/tests/IDL_Inherited_Operation/InheritedOp.mpc
new file mode 100644
index 00000000000..ab64f74834c
--- /dev/null
+++ b/TAO/tests/IDL_Inherited_Operation/InheritedOp.mpc
@@ -0,0 +1,54 @@
+// -*- MPC -*-
+// $Id$
+
+project(*idl): taoidldefaults {
+ IDL_Files {
+ InheritedOp.idl
+ }
+ custom_only = 1
+}
+
+project(*Server): taoserver {
+ after += *idl
+
+ Source_Files {
+ InheritedOpC.cpp
+ InheritedOpS.cpp
+ InheritedOp_i.cpp
+ server.cpp
+ }
+
+ Header_Files {
+ InheritedOpC.h
+ InheritedOpS.h
+ InheritedOp_i.h
+ }
+
+ Inline_Files {
+ InheritedOpC.inl
+ InheritedOpS.inl
+ }
+
+ IDL_Files {
+ }
+}
+
+project(*Client): taoclient {
+ after += *idl
+
+ Source_Files {
+ InheritedOpC.cpp
+ client.cpp
+ }
+
+ Header_Files {
+ InheritedOpC.h
+ }
+
+ Inline_Files {
+ InheritedOpC.inl
+ }
+
+ IDL_Files {
+ }
+}