summaryrefslogtreecommitdiff
path: root/TAO/tests/LongUpcalls/LongUpcalls.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/LongUpcalls/LongUpcalls.mpc')
-rw-r--r--TAO/tests/LongUpcalls/LongUpcalls.mpc71
1 files changed, 71 insertions, 0 deletions
diff --git a/TAO/tests/LongUpcalls/LongUpcalls.mpc b/TAO/tests/LongUpcalls/LongUpcalls.mpc
new file mode 100644
index 00000000000..050e6e72952
--- /dev/null
+++ b/TAO/tests/LongUpcalls/LongUpcalls.mpc
@@ -0,0 +1,71 @@
+// -*- MPC -*-
+// $Id$
+
+project(*idl): taoidldefaults, ami {
+ IDL_Files {
+ Test.idl
+ }
+ custom_only = 1
+}
+
+project(*Server): taoserver, messaging, ami {
+ exename = blocking_server
+ after += *idl
+ Source_Files {
+ Manager.cpp
+ blocking_server.cpp
+ }
+ Source_Files {
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Client): messaging, taoexe, portableserver, ami {
+ after += *idl
+ after += *Server
+ Source_Files {
+ Controller.cpp
+ blocking_client.cpp
+ }
+ Source_Files {
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*AMI_Server): taoserver, messaging, ami {
+ exename = ami_server
+ after += *idl
+ after += *Client
+ Source_Files {
+ AMI_Manager.cpp
+ ami_server.cpp
+ }
+ Source_Files {
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*AMI_Client): messaging, taoexe, portableserver, ami {
+ after += *idl
+ after += *AMI_Server
+ Source_Files {
+ Controller.cpp
+ Manager_Handler.cpp
+ ami_client.cpp
+ }
+ Source_Files {
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
+}