summaryrefslogtreecommitdiff
path: root/TAO/tests/Client_Leaks/Client_Leaks.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Client_Leaks/Client_Leaks.mpc')
-rw-r--r--TAO/tests/Client_Leaks/Client_Leaks.mpc29
1 files changed, 27 insertions, 2 deletions
diff --git a/TAO/tests/Client_Leaks/Client_Leaks.mpc b/TAO/tests/Client_Leaks/Client_Leaks.mpc
index a83a41950f3..87611da09ef 100644
--- a/TAO/tests/Client_Leaks/Client_Leaks.mpc
+++ b/TAO/tests/Client_Leaks/Client_Leaks.mpc
@@ -1,30 +1,55 @@
// -*- MPC -*-
// $Id$
+project(*idl): taoidldefaults {
+ IDL_Files {
+ Test.idl
+ }
+ custom_only = 1
+}
+
project(*Server): taoserver {
+ after += *idl
Source_Files {
Process_Factory.cpp
Startup_Callback.cpp
Server_Task.cpp
server.cpp
}
+ Source_Files {
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
}
project(*Client): taoclient, anytypecode {
+ after += *idl
after += *Server
Source_Files {
- TestC.cpp
Client_Task.cpp
client.cpp
}
+ Source_Files {
+ TestC.cpp
+ }
+ IDL_Files {
+ }
}
project(*Child): taoserver {
exename = child
+ after += *idl
after += *Client
Source_Files {
Process.cpp
child.cpp
}
+ Source_Files {
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
}
-