summaryrefslogtreecommitdiff
path: root/TAO/tests/LongUpcalls/LongUpcalls.mpc
blob: 13a0c026057b73537b8ec1d9659229b88bad5b50 (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
// -*- MPC -*-
// $Id$

project(*Server): taoserver, messaging, ami {
  exename = blocking_server
  Source_Files {
    Manager.cpp
    blocking_server.cpp
  }
}

project(*Client): messaging, taoexe, portableserver, ami {
  after += *Server
  Source_Files {
    Controller.cpp
    blocking_client.cpp
  }
}

project(*AMI_Server): taoserver, messaging, ami {
  exename = ami_server
  after += *Client
  Source_Files {
    AMI_Manager.cpp
    ami_server.cpp
  }
}

project(*AMI_Client): messaging, taoexe, portableserver, ami {
  after += *AMI_Server
  Source_Files {
    Controller.cpp
    Manager_Handler.cpp
    ami_client.cpp
  }
}