summaryrefslogtreecommitdiff
path: root/TAO/examples/Quoter/Quoter.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Quoter/Quoter.mpc')
-rw-r--r--TAO/examples/Quoter/Quoter.mpc55
1 files changed, 55 insertions, 0 deletions
diff --git a/TAO/examples/Quoter/Quoter.mpc b/TAO/examples/Quoter/Quoter.mpc
new file mode 100644
index 00000000000..a3571740a13
--- /dev/null
+++ b/TAO/examples/Quoter/Quoter.mpc
@@ -0,0 +1,55 @@
+// -*- MPC -*-
+// $Id$
+
+project(*IDL): taoidldefaults {
+ IDL_Files {
+ Quoter.idl
+ }
+ custom_only = 1
+}
+
+project(*server): namingexe, lifecycle, avoids_minimum_corba, utils, avoids_corba_e_micro {
+ after += *IDL
+ Source_Files {
+ QuoterC.cpp
+ QuoterS.cpp
+ server.cpp
+ Quoter_i.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*client): namingexe, lifecycle, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
+ after += *IDL
+ Source_Files {
+ QuoterC.cpp
+ client.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Factory Finder): namingexe, lifecycle, avoids_minimum_corba, utils {
+ after += *IDL
+ Source_Files {
+ QuoterC.cpp
+ QuoterS.cpp
+ Factory_Finder.cpp
+ Factory_Finder_i.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Generic Factory): namingexe, lifecycle, avoids_minimum_corba, utils {
+ after += *IDL
+ Source_Files {
+ QuoterC.cpp
+ QuoterS.cpp
+ Generic_Factory.cpp
+ Generic_Factory_i.cpp
+ }
+ IDL_Files {
+ }
+}