summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Triangle_Test/TT.mpc
blob: 7d62074dd0dc55c3c8a698a6223789d9929987fe (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
// -*- MPC -*-
// $Id$

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

project(*Nested_Upcall_Server_A): taoserver, utils, avoids_corba_e_micro {
  exename = server_A
  after += *Nested_Upcall_Server_Idl
  Source_Files {
    Object_A_i.cpp
    server_A.cpp
  }
  Source_Files {
    Triangle_TestC.cpp
    Triangle_TestS.cpp
  }
  IDL_Files {
  }
}

project(*Nested_Upcall_Server_B): taoserver, utils, avoids_corba_e_micro {
  exename = server_B
  after += *Nested_Upcall_Server_Idl
  Source_Files {
    Object_B_i.cpp
    server_B.cpp
  }
  Source_Files {
    Triangle_TestC.cpp
    Triangle_TestS.cpp
  }
  IDL_Files {
  }
}

project(*Nested_Upcall_Initiator): taoserver, utils, avoids_corba_e_micro {
  exename = initiator
  after += *Nested_Upcall_Server_Idl
  Source_Files {
    Initiator_i.cpp
    initiator.cpp
  }
  Source_Files {
    Triangle_TestC.cpp
    Triangle_TestS.cpp
  }
  IDL_Files {
  }
}