summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/ORT/ORT.mpc
blob: 406b4148ddd9c017382efd916f416f75194b5b46 (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
47
48
49
50
51
52
// $Id$

project(*idl): taoidldefaults, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
  idl_files {
    Gateway.idl
    ObjectReferenceFactory.idl
    sum_server.idl
  }
  custom_only = 1
}

project(*Gateway) : orbsvcsexe, dynamicinterface, ifr_client, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
  after += *idl

  source_files {
    GatewayC.cpp
    GatewayS.cpp
    gateway_server.cpp
    Gateway_i.cpp
    Object_Factory_i.cpp
  }
  idl_files {
  }
}

project(*Server) : orbsvcsexe, dynamicinterface, ifr_client, avoids_minimum_corba, iorinterceptor, avoids_corba_e_compact, avoids_corba_e_micro {
  exename   = server
  after += *idl
  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 {
  }
}

project(*Client) : orbsvcsexe, event, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
  after += *idl
  source_files {
    client.cpp
    sum_serverC.cpp
  }
  idl_files {
  }
}