summaryrefslogtreecommitdiff
path: root/TAO/tests/DSI_AMI_Gateway/DSI_AMI_Gateway.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DSI_AMI_Gateway/DSI_AMI_Gateway.mpc')
-rw-r--r--TAO/tests/DSI_AMI_Gateway/DSI_AMI_Gateway.mpc48
1 files changed, 48 insertions, 0 deletions
diff --git a/TAO/tests/DSI_AMI_Gateway/DSI_AMI_Gateway.mpc b/TAO/tests/DSI_AMI_Gateway/DSI_AMI_Gateway.mpc
new file mode 100644
index 00000000000..391233412d6
--- /dev/null
+++ b/TAO/tests/DSI_AMI_Gateway/DSI_AMI_Gateway.mpc
@@ -0,0 +1,48 @@
+// -*- MPC -*-
+// $Id$
+
+project(*idl): taoidldefaults {
+ IDL_Files {
+ test.idl
+ }
+ custom_only = 1
+}
+
+project(*Server): taoserver, messaging, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro, dynamicinterface {
+ after += *idl
+ Source_Files {
+ test_i.cpp
+ server.cpp
+ }
+ Source_Files {
+ testC.cpp
+ testS.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Client): taoclient, messaging, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro, dynamicinterface {
+ after += *idl
+ after += *Server
+ Source_Files {
+ client.cpp
+ }
+ Source_Files {
+ testC.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Gateway): taoexe, portableserver, messaging, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro, dynamicinterface {
+ after += *idl
+ after += *Client
+ Source_Files {
+ test_dsi.cpp
+ gateway.cpp
+ My_DII_Reply_Handler.cpp
+ }
+ IDL_Files {
+ }
+}