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

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

project(*Server): taoserver, messaging {
  after += *idl
  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
  }
  Source_Files {
    TestC.cpp
    TestS.cpp
  }
  IDL_Files {
  }
}

project(*Scavenger): taoserver, messaging {
  exename = scavenger
  after += *idl
  Source_Files {
    scavenger.cpp
  }
  Source_Files {
    TestC.cpp
    TestS.cpp
  }
  IDL_Files {
  }
}

project(*Client): taoserver, messaging {
  exename = client
  after += *idl
  Source_Files {
    Clock_Ticks.cpp
    Client_Peer.cpp
    client.cpp
  }
  Source_Files {
    TestC.cpp
    TestS.cpp
  }
  IDL_Files {
  }
}