summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/PI_ProcMode_Remote.mpc
blob: 240208b4dda8346cb39b8a5e41c77f63c875297a (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
39
40
41
42
43
44
45
// -*- MPC -*-
// $Id$

project(*idl): taoidldefaults {
  idlflags -= -St
  IDL_Files {
    test.idl
  }
  custom_only = 1
}

project(*RemoteServer): taoserver, pi_server, interceptors {
  exename = PI_ProcMode_Remote_TestServer
  after += *idl
  Source_Files {
    test_i.cpp
    server_interceptor.cpp
    Echo_Server_ORBInitializer.cpp
    server_main.cpp
    Server_Task.cpp
  }
  Source_Files {
    testC.cpp
    testS.cpp
  }
  IDL_Files {
  }
}

project(*RemoteClient): taoclient, portableserver, pi, interceptors {
  exename = PI_ProcMode_Remote_TestClient
  after += *idl
  after += *RemoteServer
  Source_Files {
    client_interceptor.cpp
    Echo_Client_ORBInitializer.cpp
    client_main.cpp
    Client_Task.cpp
  }
  Source_Files {
    testC.cpp
  }
  IDL_Files {
  }
}