summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ReconnectServer.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ReconnectServer.mpc')
-rwxr-xr-xACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ReconnectServer.mpc50
1 files changed, 50 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ReconnectServer.mpc b/ACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ReconnectServer.mpc
new file mode 100755
index 00000000000..92d89b786e0
--- /dev/null
+++ b/ACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ReconnectServer.mpc
@@ -0,0 +1,50 @@
+// $Id$
+//
+// Really the server is the only one that needs to avoid minimum_corba and
+// the lot. But there's no sense in building anything if you can't build
+// the server.
+
+project(*idl): taoidldefaults, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
+ custom_only = 1
+ IDL_Files {
+ test.idl
+ }
+}
+
+project(*serverA): taoserver, imr_client, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
+ exename = serverA
+ after += *idl
+ IDL_Files {
+ }
+ Source_Files {
+ testC.cpp
+ testS.cpp
+ serverA.cpp
+ test_i.cpp
+ }
+}
+
+project(*serverB): taoserver, imr_client, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
+ exename = serverB
+ after += *idl
+ IDL_Files {
+ }
+ Source_Files {
+ testC.cpp
+ testS.cpp
+ serverB.cpp
+ test_i.cpp
+ ORB_Task.cpp
+ }
+}
+
+project(*client): taoserver, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
+ exename = client
+ after += *idl
+ IDL_Files {
+ }
+ Source_Files {
+ testC.cpp
+ client.cpp
+ }
+}