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

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

project(*Server): taoexe, portableserver, avoids_minimum_corba, bidir_giop, avoids_corba_e_micro {
  after += *idl
  Source_Files {
    Sender_i.cpp
    Server_Task.cpp
    server.cpp
  }
  Source_Files {
    ReceiverC.cpp
    SenderC.cpp
    SenderS.cpp
  }
  IDL_Files {
  }
}

project(*Client): taoexe, portableserver, avoids_minimum_corba, bidir_giop, avoids_corba_e_micro {
  after += *idl
  Source_Files {
    Client_Task.cpp
    Receiver_i.cpp
    client.cpp
  }
  Source_Files {
    ReceiverC.cpp
    ReceiverS.cpp
    SenderC.cpp
  }
  IDL_Files {
  }
}