summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/grid/grid.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/grid/grid.mpc')
-rw-r--r--TAO/examples/Simple/grid/grid.mpc36
1 files changed, 36 insertions, 0 deletions
diff --git a/TAO/examples/Simple/grid/grid.mpc b/TAO/examples/Simple/grid/grid.mpc
new file mode 100644
index 00000000000..b1560d75e3d
--- /dev/null
+++ b/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 {
+ GridC.cpp
+ GridS.cpp
+ Grid_i.cpp
+ server.cpp
+ ../Simple_util.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*client): namingexe, iortable, utils {
+ exename = client
+ after += *IDL
+ Source_Files {
+ GridC.cpp
+ client.cpp
+ ../Simple_util.cpp
+ Grid_Client_i.cpp
+ }
+ IDL_Files {
+ }
+}