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

project(*Server): taoserver, messaging {
  specific(bmake, borland, nmake, em3, vc6, vc71, vc8) {
    // Use a roughly 16MB stack to avoid stack overflow in this test
    StackReserveSize = 16000000
  }
  Source_Files {
    Clock_Ticks.cpp
    Server_Peer.cpp
    server.cpp
  }
}

project(*Scavenger): taoserver, messaging {
  exename = scavenger
  Source_Files {
    scavenger.cpp
  }
}

project(*Client): taoserver, messaging {
  exename = client
  Source_Files {
    Clock_Ticks.cpp
    Client_Peer.cpp
    client.cpp
  }
}