summaryrefslogtreecommitdiff
path: root/TAO/tests/DSI_Gateway/DSI_Gateway.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DSI_Gateway/DSI_Gateway.mpc')
-rw-r--r--TAO/tests/DSI_Gateway/DSI_Gateway.mpc28
1 files changed, 27 insertions, 1 deletions
diff --git a/TAO/tests/DSI_Gateway/DSI_Gateway.mpc b/TAO/tests/DSI_Gateway/DSI_Gateway.mpc
index 6f95b0c65c1..7703b170041 100644
--- a/TAO/tests/DSI_Gateway/DSI_Gateway.mpc
+++ b/TAO/tests/DSI_Gateway/DSI_Gateway.mpc
@@ -1,25 +1,51 @@
// -*- 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 {
- testC.cpp
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
}
+ Source_Files {
+ testC.cpp
+ testS.cpp
+ }
+ IDL_Files {
+ }
}