summaryrefslogtreecommitdiff
path: root/TAO/examples/Persistent_Grid/Persistent_Grid.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Persistent_Grid/Persistent_Grid.mpc')
-rw-r--r--TAO/examples/Persistent_Grid/Persistent_Grid.mpc46
1 files changed, 46 insertions, 0 deletions
diff --git a/TAO/examples/Persistent_Grid/Persistent_Grid.mpc b/TAO/examples/Persistent_Grid/Persistent_Grid.mpc
new file mode 100644
index 00000000000..3905b5e4b51
--- /dev/null
+++ b/TAO/examples/Persistent_Grid/Persistent_Grid.mpc
@@ -0,0 +1,46 @@
+// -*- MPC -*-
+// $Id$
+
+project(*IDL): taoidldefaults {
+ IDL_Files {
+ Grid.idl
+ }
+ custom_only = 1
+}
+
+project(*server): taoserver, utils, avoids_corba_e_micro, avoids_ace_for_tao {
+ after += *IDL
+ Source_Files {
+ Grid_i.cpp
+ Simple_util.cpp
+ server.cpp
+ GridS.cpp
+ GridC.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*client): taoexe, utils, portableserver {
+ after += *IDL
+ Source_Files {
+ GridC.cpp
+ Simple_util.cpp
+ Grid_Client_i.cpp
+ client.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*persistent client): taoexe, utils, portableserver {
+ after += *IDL
+ Source_Files {
+ GridC.cpp
+ Simple_util.cpp
+ Persistent_Client_i.cpp
+ persistent_client.cpp
+ }
+ IDL_Files {
+ }
+}