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.mpc55
1 files changed, 55 insertions, 0 deletions
diff --git a/TAO/tests/Client_Leaks/Client_Leaks.mpc b/TAO/tests/Client_Leaks/Client_Leaks.mpc
new file mode 100644
index 00000000000..87611da09ef
--- /dev/null
+++ b/TAO/tests/Client_Leaks/Client_Leaks.mpc
@@ -0,0 +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 {
+ 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 {
+ }
+}