summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/Default_Servant/POA_Default_Servant.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/POA/Default_Servant/POA_Default_Servant.mpc')
-rw-r--r--TAO/examples/POA/Default_Servant/POA_Default_Servant.mpc31
1 files changed, 31 insertions, 0 deletions
diff --git a/TAO/examples/POA/Default_Servant/POA_Default_Servant.mpc b/TAO/examples/POA/Default_Servant/POA_Default_Servant.mpc
new file mode 100644
index 00000000000..b48685f3af7
--- /dev/null
+++ b/TAO/examples/POA/Default_Servant/POA_Default_Servant.mpc
@@ -0,0 +1,31 @@
+// -*- MPC -*-
+// $Id$
+
+project(*IDL): taoidldefaults, anytypecode {
+ IDL_Files {
+ File.idl
+ }
+ custom_only = 1
+}
+
+project(*Client) : taoclient, anytypecode, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
+ after += *IDL
+ source_files {
+ FileC.cpp
+ client.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Server) : taoserver, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
+ after += *IDL
+ source_files {
+ File_i.cpp
+ server.cpp
+ FileS.cpp
+ FileC.cpp
+ }
+ IDL_Files {
+ }
+}