summaryrefslogtreecommitdiff
path: root/trunk/TAO/examples/Simple/chat/chat.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/examples/Simple/chat/chat.mpc')
-rw-r--r--trunk/TAO/examples/Simple/chat/chat.mpc38
1 files changed, 38 insertions, 0 deletions
diff --git a/trunk/TAO/examples/Simple/chat/chat.mpc b/trunk/TAO/examples/Simple/chat/chat.mpc
new file mode 100644
index 00000000000..5b3a353ea50
--- /dev/null
+++ b/trunk/TAO/examples/Simple/chat/chat.mpc
@@ -0,0 +1,38 @@
+// -*- MPC -*-
+// $Id$
+
+project(*IDL): taoidldefaults {
+ IDL_Files {
+ Receiver.idl
+ Broadcaster.idl
+ }
+ custom_only = 1
+}
+
+project(*server) : taoserver, utils, iortable {
+ after += *IDL
+ IDL_Files {
+ }
+ Source_Files {
+ Broadcaster_i.cpp
+ Server_i.cpp
+ server.cpp
+ BroadcasterS.cpp
+ BroadcasterC.cpp
+ ReceiverC.cpp
+ }
+}
+
+project(*client): taoexe, portableserver, utils {
+ after += *IDL
+ IDL_Files {
+ }
+ Source_Files {
+ Receiver_i.cpp
+ Client_i.cpp
+ client.cpp
+ ReceiverS.cpp
+ ReceiverC.cpp
+ BroadcasterC.cpp
+ }
+}