summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Bug_1270_Regression/Bug_1270_Regression.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/Bug_1270_Regression/Bug_1270_Regression.mpc')
-rw-r--r--trunk/TAO/tests/Bug_1270_Regression/Bug_1270_Regression.mpc47
1 files changed, 47 insertions, 0 deletions
diff --git a/trunk/TAO/tests/Bug_1270_Regression/Bug_1270_Regression.mpc b/trunk/TAO/tests/Bug_1270_Regression/Bug_1270_Regression.mpc
new file mode 100644
index 00000000000..a594a344e69
--- /dev/null
+++ b/trunk/TAO/tests/Bug_1270_Regression/Bug_1270_Regression.mpc
@@ -0,0 +1,47 @@
+// -*- MPC -*-
+// $Id$
+
+project(*idl): taoidldefaults {
+ IDL_Files {
+ Test.idl
+ }
+ custom_only =1
+}
+
+project(*Server): taoserver, messaging {
+ after += *idl
+ Source_Files {
+ Echo_Caller.cpp
+ Server_Timer.cpp
+ server.cpp
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Client): taoclient, messaging {
+ after += *idl
+ after += *Server
+ Source_Files {
+ Echo.cpp
+ client.cpp
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Shutdown): taoexe, messaging {
+ after += *idl
+ after += *Client
+ Source_Files {
+ shutdown.cpp
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
+}