summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/AMI/PI_AMI.mpc
blob: 6cb3839bf8dcd86ccfb66b8380b3a75a113d03a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// -*- MPC -*-
project(*idl): taoidldefaults, ami {
  IDL_Files {
    Test.idl
  }
  custom_only = 1
}

project(*Client) : taoserver, ami, pi, interceptors {
  exename = client
  after += *idl
  source_files {
    TestC.cpp
    TestS.cpp
    client.cpp
    Client_Interceptor.cpp
    Client_ORBInitializer.cpp
    Echo_Handler.cpp
  }
  IDL_Files {
  }
}

project(*server) : taoserver, ami, pi_server, interceptors {
  exename = server
  after += *idl
  after += *Client
  source_files {
    TestC.cpp
    TestS.cpp
    server.cpp
    Server_Interceptor.cpp
    Server_ORBInitializer.cpp
    Echo.cpp
  }
  IDL_Files {
  }
}