summaryrefslogtreecommitdiff
path: root/TAO/examples/Callback_Quoter/Callback_Quoter.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Callback_Quoter/Callback_Quoter.mpc')
-rw-r--r--TAO/examples/Callback_Quoter/Callback_Quoter.mpc55
1 files changed, 55 insertions, 0 deletions
diff --git a/TAO/examples/Callback_Quoter/Callback_Quoter.mpc b/TAO/examples/Callback_Quoter/Callback_Quoter.mpc
new file mode 100644
index 00000000000..5b96007db67
--- /dev/null
+++ b/TAO/examples/Callback_Quoter/Callback_Quoter.mpc
@@ -0,0 +1,55 @@
+// -*- MPC -*-
+// $Id$
+
+project(*IDL): taoidldefaults {
+ IDL_Files {
+ Consumer.idl
+ Notifier.idl
+ }
+ custom_only = 1
+}
+
+project(Callback_Quoter notifier): namingexe, utils, avoids_corba_e_micro {
+ after += *IDL
+ Source_Files {
+ NotifierC.cpp
+ NotifierS.cpp
+ ConsumerC.cpp
+ Notifier_i.cpp
+ Notifier_Input_Handler.cpp
+ notifier.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(Callback_Quoter consumer): namingexe, portableserver {
+ after += *IDL
+ Source_Files {
+ ConsumerC.cpp
+ ConsumerS.cpp
+ NotifierC.cpp
+ Consumer_Input_Handler.cpp
+ Consumer_Signal_Handler.cpp
+ Consumer_Handler.cpp
+ consumer.cpp
+ Consumer_i.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(Callback_Quoter supplier): namingexe, portableserver {
+ after += *IDL
+ Source_Files {
+ ConsumerC.cpp
+ ConsumerS.cpp
+ NotifierC.cpp
+ Supplier_i.cpp
+ Supplier_Timer_Handler.cpp
+ supplier.cpp
+ Consumer_i.cpp
+ }
+ IDL_Files {
+ }
+}