summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Oneway_Buffering/Oneway_Buffering.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Oneway_Buffering/Oneway_Buffering.mpc')
-rw-r--r--ACE/TAO/tests/Oneway_Buffering/Oneway_Buffering.mpc53
1 files changed, 53 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Oneway_Buffering/Oneway_Buffering.mpc b/ACE/TAO/tests/Oneway_Buffering/Oneway_Buffering.mpc
new file mode 100644
index 00000000000..92fe4fbd3bc
--- /dev/null
+++ b/ACE/TAO/tests/Oneway_Buffering/Oneway_Buffering.mpc
@@ -0,0 +1,53 @@
+// -*- MPC -*-
+// $Id$
+
+project(*idl): taoidldefaults {
+ IDL_Files {
+ Test.idl
+ }
+ custom_only = 1
+}
+
+project(*Server): messaging, taoserver {
+ after += *idl
+ Source_Files {
+ Oneway_Buffering.cpp
+ server.cpp
+ }
+ Source_Files {
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Client): messaging, taoclient {
+ exename = client
+ requires += corba_messaging
+ after += *idl
+
+ Source_Files {
+ client.cpp
+ }
+ Source_Files {
+ TestC.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Admin): messaging, taoserver {
+ exename = admin
+ after += *idl
+ Source_Files {
+ Oneway_Buffering_Admin.cpp
+ admin.cpp
+ }
+ Source_Files {
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
+}