summaryrefslogtreecommitdiff
path: root/trunk/TAO/examples/Simple/bank/bank.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/examples/Simple/bank/bank.mpc')
-rw-r--r--trunk/TAO/examples/Simple/bank/bank.mpc37
1 files changed, 37 insertions, 0 deletions
diff --git a/trunk/TAO/examples/Simple/bank/bank.mpc b/trunk/TAO/examples/Simple/bank/bank.mpc
new file mode 100644
index 00000000000..a8fc2264d0b
--- /dev/null
+++ b/trunk/TAO/examples/Simple/bank/bank.mpc
@@ -0,0 +1,37 @@
+// -*- MPC -*-
+// $Id$
+
+project(*IDL): taoidldefaults, anytypecode {
+ IDL_Files {
+ Bank.idl
+ }
+ custom_only = 1
+}
+
+project(*server): namingexe, iortable, utils, avoids_corba_e_micro {
+ exename = server
+ after += *IDL
+ Source_Files {
+ Account_i.cpp
+ AccountManager_i.cpp
+ ../Simple_util.cpp
+ server.cpp
+ BankS.cpp
+ BankC.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*client): namingexe, iortable, utils {
+ exename = client
+ after += *IDL
+ Source_Files {
+ BankC.cpp
+ client.cpp
+ ../Simple_util.cpp
+ Bank_Client_i.cpp
+ }
+ IDL_Files {
+ }
+}