summaryrefslogtreecommitdiff
path: root/ACE/TAO/DevGuideExamples/RTCORBA/RTCORBA.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/DevGuideExamples/RTCORBA/RTCORBA.mpc')
-rw-r--r--ACE/TAO/DevGuideExamples/RTCORBA/RTCORBA.mpc40
1 files changed, 40 insertions, 0 deletions
diff --git a/ACE/TAO/DevGuideExamples/RTCORBA/RTCORBA.mpc b/ACE/TAO/DevGuideExamples/RTCORBA/RTCORBA.mpc
new file mode 100644
index 00000000000..55ae18affc1
--- /dev/null
+++ b/ACE/TAO/DevGuideExamples/RTCORBA/RTCORBA.mpc
@@ -0,0 +1,40 @@
+// $Id$
+
+project(*idl): taoidldefaults {
+ IDL_Files {
+ Messenger.idl
+ }
+ custom_only = 1
+}
+
+project(*Server): rt_server {
+ exename = MessengerServer
+ after += *idl
+ Source_Files {
+ Messenger_i.cpp
+ MessengerServer.cpp
+ common.cpp
+ }
+ Source_Files {
+ MessengerC.cpp
+ MessengerS.cpp
+ }
+ IDL_Files {
+ }
+}
+
+
+project(*Client): rt_client {
+ exename = MessengerClient
+ after += *idl
+ Source_Files {
+ MessengerClient.cpp
+ common.cpp
+ }
+ Source_Files {
+ MessengerC.cpp
+ }
+ IDL_Files {
+ }
+}
+