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

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

project(*Nested_Upcall_Server): taoserver, utils, avoids_corba_e_micro {
  after += *Nested_Upcall_Idl
  Source_Files {
    MT_Object_i.cpp
    server.cpp
  }
  Source_Files {
    MT_Client_TestC.cpp
    MT_Client_TestS.cpp
  }
  IDL_Files {
  }
}

project(*Nested_Upcall_Client): taoexe, utils, portableserver, avoids_corba_e_micro {
  after += *Nested_Upcall_Idl
  after += *Nested_Upcall_Server
  Source_Files {
    MT_Object_i.cpp
    local_server.cpp
    client.cpp
  }
  Source_Files {
    MT_Client_TestC.cpp
    MT_Client_TestS.cpp
  }
  IDL_Files {
  }
}