summaryrefslogtreecommitdiff
path: root/TAO/tests/Faults/Faults.mpc
blob: 0bc0ae29bce4dab5def90352bcd873844e31800c (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
69
70
71
// -*- MPC -*-
// $Id$

project(*Server): taoserver, minimum_corba {
  IDL_Files {
    test.idl
  }

  Source_Files {
    testC.cpp
    testS.cpp
    test_i.cpp
    server.cpp
  }
}

project(*Middle): taoexe, portableserver, minimum_corba {
  after += *Server
  IDL_Files {
    test.idl
  }

  Source_Files {
    testC.cpp
    testS.cpp
    test_i.cpp
    middle.cpp
  }
}

project(*Client): taoexe, portableserver, minimum_corba {
  after += *Middle
  IDL_Files {
    test.idl
  }

  Source_Files {
    testC.cpp
    testS.cpp
    test_i.cpp
    client.cpp
  }
}

project(*Ping): taoexe, portableserver, minimum_corba {
  IDL_Files {
    ping.idl
  }

  Source_Files {
    pingC.cpp
    pingS.cpp
    ping_i.cpp
    ping.cpp
  }
}

project(*Pong): taoexe, portableserver, minimum_corba {
  after += *Ping
  IDL_Files {
    ping.idl
  }

  Source_Files {
    pingC.cpp
    pingS.cpp
    ping_i.cpp
    pong.cpp
  }
}