summaryrefslogtreecommitdiff
path: root/trunk/TAO/examples/Simple/grid/grid.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/examples/Simple/grid/grid.mpc')
-rw-r--r--trunk/TAO/examples/Simple/grid/grid.mpc36
1 files changed, 36 insertions, 0 deletions
diff --git a/trunk/TAO/examples/Simple/grid/grid.mpc b/trunk/TAO/examples/Simple/grid/grid.mpc
new file mode 100644
index 00000000000..fea24a387e9
--- /dev/null
+++ b/trunk/TAO/examples/Simple/grid/grid.mpc
@@ -0,0 +1,36 @@
+// -*- MPC -*-
+// $Id$
+
+project(*IDL): taoidldefaults {
+ IDL_Files {
+ Grid.idl
+ }
+ custom_only = 1
+}
+
+project(*server): namingexe, iortable, utils, avoids_corba_e_micro {
+ exename = server
+ after += *IDL
+ Source_Files {
+ Grid_i.cpp
+ server.cpp
+ ../Simple_util.cpp
+ GridS.cpp
+ GridC.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*client): namingexe, iortable, utils {
+ exename = client
+ after += *IDL
+ Source_Files {
+ client.cpp
+ ../Simple_util.cpp
+ Grid_Client_i.cpp
+ GridC.cpp
+ }
+ IDL_Files {
+ }
+}