Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Nested_Upcall_Crash / Nested_Upcall_Crash.mpc
blob602268f2aa1e97f8410d3fdb8828a9f11157750f
1 // -*- MPC -*-
2 project(*idl): taoidldefaults {
3   IDL_Files {
4     Test.idl
5   }
6   custom_only = 1
9 project(*Server): taoserver, messaging {
10   after += *idl
11   specific(prop:windows) {
12     // Use a roughly 16MB stack to avoid stack overflow in this test
13     StackReserveSize = 16000000
14   }
15   Source_Files {
16     Clock_Ticks.cpp
17     Server_Peer.cpp
18     server.cpp
19   }
20   Source_Files {
21     TestC.cpp
22     TestS.cpp
23   }
24   IDL_Files {
25   }
28 project(*Scavenger): taoserver, messaging {
29   exename = scavenger
30   after += *idl
31   Source_Files {
32     scavenger.cpp
33   }
34   Source_Files {
35     TestC.cpp
36     TestS.cpp
37   }
38   IDL_Files {
39   }
42 project(*Client): taoserver, messaging {
43   exename = client
44   after += *idl
45   Source_Files {
46     Clock_Ticks.cpp
47     Client_Peer.cpp
48     client.cpp
49   }
50   Source_Files {
51     TestC.cpp
52     TestS.cpp
53   }
54   IDL_Files {
55   }