summaryrefslogtreecommitdiff
path: root/TAO/tests/DSI_Gateway/DSI_Gateway.mpc
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-12-24 00:14:58 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-12-24 00:14:58 +0000
commite4a726c4b2baf44f3d44a8bea21578cc4748dfa3 (patch)
tree27a533be65fbf20e0563987f519bc3f4b2c5d80a /TAO/tests/DSI_Gateway/DSI_Gateway.mpc
parent397a28c0ca8ad378bb9978f3537f0d25ebb9cb9b (diff)
downloadATCD-e4a726c4b2baf44f3d44a8bea21578cc4748dfa3.tar.gz
ChangeLogTag: Sun Dec 24 00:04:19 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
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 {
+ }
}