summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/ORT/ORT.mpc
blob: c7442bcc119abc486ae10ad65092553f0c23cca0 (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
46
// $Id$
project(*Gateway) : orbsvcsexe, dynamicinterface, ifr_client {
  avoids += minimum_corba
  source_files {
    GatewayC.cpp
    GatewayS.cpp
    gateway_server.cpp
    Gateway_i.cpp
    Object_Factory_i.cpp
  }
  idl_files {
    Gateway.idl
  }
}

project(*Server) : orbsvcsexe, dynamicinterface, ifr_client {
  exename   = server
  after    += *Gateway
  avoids += minimum_corba
  source_files {
    server.cpp
    GatewayC.cpp
    Gateway_ObjRef_Factory.cpp
    sum_serverC.cpp
    sum_serverS.cpp
    sum_server_i.cpp
    Server_IORInterceptor_ORBInitializer.cpp
    Server_IORInterceptor.cpp
    ObjectReferenceFactoryC.cpp
  }
  idl_files {
    ObjectReferenceFactory.idl
    sum_server.idl
  }
}

project(*Client) : orbsvcsexe, event {
  avoids += minimum_corba
  after += *Server
  source_files {
    client.cpp
    sum_serverC.cpp
  }
}