summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/AMI/PI_AMI.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/AMI/PI_AMI.mpc')
-rw-r--r--TAO/tests/Portable_Interceptors/AMI/PI_AMI.mpc44
1 files changed, 44 insertions, 0 deletions
diff --git a/TAO/tests/Portable_Interceptors/AMI/PI_AMI.mpc b/TAO/tests/Portable_Interceptors/AMI/PI_AMI.mpc
new file mode 100644
index 00000000000..2e1954944aa
--- /dev/null
+++ b/TAO/tests/Portable_Interceptors/AMI/PI_AMI.mpc
@@ -0,0 +1,44 @@
+// -*- MPC -*-
+// $Id$
+
+project(*idl): taoidldefaults, ami {
+ IDL_Files {
+ Test.idl
+ }
+ custom_only = 1
+}
+
+project(*Client) : taoserver, ami, pi, interceptors {
+ exename = client
+ after += *idl
+ source_files {
+ client.cpp
+ Client_Interceptor.cpp
+ Client_ORBInitializer.cpp
+ Echo_Handler.cpp
+ }
+ source_files {
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*server) : taoserver, ami, pi_server, interceptors {
+ exename = server
+ after += *idl
+ after += *Client
+ source_files {
+ server.cpp
+ Server_Interceptor.cpp
+ Server_ORBInitializer.cpp
+ Echo.cpp
+ }
+ source_files {
+ TestC.cpp
+ TestS.cpp
+ }
+ IDL_Files {
+ }
+}