summaryrefslogtreecommitdiff
path: root/TAO/tests/LongUpcalls/LongUpcalls.mpc
blob: cb18bd3ee524b61afaa25936c75031cfb41fe8f3 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// -*- MPC -*-
// $Id$

project(*idl): taoidldefaults, ami {
  IDL_Files {
    Test.idl
  }
  custom_only = 1
}

project(*Server): taoserver, messaging, ami {
  exename = blocking_server
  after += *idl
  Source_Files {
    Manager.cpp
    blocking_server.cpp
  }
  Source_Files {
    TestC.cpp
    TestS.cpp
  }
  IDL_Files {
  }
}

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

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

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