summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/TAO/IDL_Cubit/IDL_Cubit.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Cubit/TAO/IDL_Cubit/IDL_Cubit.mpc')
-rw-r--r--TAO/performance-tests/Cubit/TAO/IDL_Cubit/IDL_Cubit.mpc62
1 files changed, 62 insertions, 0 deletions
diff --git a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/IDL_Cubit.mpc b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/IDL_Cubit.mpc
new file mode 100644
index 00000000000..0795cb6b8ec
--- /dev/null
+++ b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/IDL_Cubit.mpc
@@ -0,0 +1,62 @@
+// -*- MPC -*-
+// $Id$
+
+project(*IDL): taoidldefaults, strategies {
+ idlflags += -Gd
+
+ IDL_Files {
+ cubit.idl
+ }
+ custom_only = 1
+}
+
+project(*Server): taoexe, utils, portableserver, strategies, avoids_corba_e_micro, avoids_ace_for_tao {
+ after += *IDL
+ Source_Files {
+ cubitC.cpp
+ cubitS.cpp
+ RTI_IO.cpp
+ Cubit_i.cpp
+ Cubit_Client.cpp
+ Cubit_Server.cpp
+ server.cpp
+ }
+
+ IDL_Files {
+ }
+}
+
+project(*client): taoexe, portableserver, strategies {
+ after += *IDL
+ avoids += ace_for_tao
+ Source_Files {
+ cubitC.cpp
+ RTI_IO.cpp
+ Cubit_Client.cpp
+ client.cpp
+ }
+
+ IDL_Files {
+ }
+}
+
+project(*collocation): taoserver, utils, strategies, avoids_corba_e_micro, avoids_ace_for_tao {
+ after += *IDL
+ // Note : You can't just prepend collocation/ to the exename
+ // to get it to ouput to that directory. It won't go
+ // to the right place on some platforms. (Windows)
+ exename = collocation_test
+
+ Source_Files {
+ cubitC.cpp
+ cubitS.cpp
+ RTI_IO.cpp
+ collocation_test.cpp
+ Cubit_i.cpp
+ Cubit_Client.cpp
+ Cubit_Server.cpp
+ }
+
+ IDL_Files {
+ }
+}