summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Protocols/Protocols.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Protocols/Protocols.mpc')
-rw-r--r--TAO/performance-tests/Protocols/Protocols.mpc52
1 files changed, 52 insertions, 0 deletions
diff --git a/TAO/performance-tests/Protocols/Protocols.mpc b/TAO/performance-tests/Protocols/Protocols.mpc
new file mode 100644
index 00000000000..841b85ed259
--- /dev/null
+++ b/TAO/performance-tests/Protocols/Protocols.mpc
@@ -0,0 +1,52 @@
+// -*- MPC -*-
+// $Id$
+
+project(*IDL): taoidldefaults {
+ IDL_Files {
+ test.idl
+ }
+ custom_only = 1
+}
+
+project(*Receiver): taoserver {
+ avoids += ace_for_tao
+ after += *IDL
+ exename = receiver
+ Source_Files {
+ testC.cpp
+ testS.cpp
+ receiver.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Distributor): rt_server {
+ after += *IDL
+ exename = distributor
+ Source_Files {
+ testC.cpp
+ testS.cpp
+ distributor.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Sender): rt_client {
+ avoids += ace_for_tao
+ after += *IDL
+
+ specific (automake ) {
+ includes += $(srcdir)/../../tests/RTCORBA/Diffserv
+ } else {
+ includes += ../../tests/RTCORBA/Diffserv
+ }
+
+ Source_Files {
+ sender.cpp
+ testC.cpp
+ }
+ IDL_Files {
+ }
+}