summaryrefslogtreecommitdiff
path: root/ACE/TAO/DevGuideExamples/PortableInterceptors/IOR/IOR.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/DevGuideExamples/PortableInterceptors/IOR/IOR.mpc')
-rw-r--r--ACE/TAO/DevGuideExamples/PortableInterceptors/IOR/IOR.mpc41
1 files changed, 41 insertions, 0 deletions
diff --git a/ACE/TAO/DevGuideExamples/PortableInterceptors/IOR/IOR.mpc b/ACE/TAO/DevGuideExamples/PortableInterceptors/IOR/IOR.mpc
new file mode 100644
index 00000000000..28e5fe7e1ae
--- /dev/null
+++ b/ACE/TAO/DevGuideExamples/PortableInterceptors/IOR/IOR.mpc
@@ -0,0 +1,41 @@
+// $Id$
+
+project(*idl): taoidldefaults {
+ IDL_Files {
+ Messenger.idl
+ }
+ custom_only = 1
+}
+
+project(*Server): taoserver, pi_server, avoids_minimum_corba, iorinterceptor {
+ exename = MessengerServer
+ after += *idl
+ Source_Files {
+ Messenger_i.cpp
+ MessengerServer.cpp
+ ServerInitializer.cpp
+ ServerInterceptor.cpp
+ ServerIORInterceptor.cpp
+ }
+ Source_Files {
+ MessengerC.cpp
+ MessengerS.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Client): taoclient, pi, avoids_minimum_corba, interceptors {
+ exename = MessengerClient
+ after += *idl
+ Source_Files {
+ MessengerClient.cpp
+ ClientInitializer.cpp
+ ClientInterceptor.cpp
+ }
+ Source_Files {
+ MessengerC.cpp
+ }
+ IDL_Files {
+ }
+}