summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Protocols/Protocols.mpc
blob: 826cccec1c851f7a6489bfc7034b42ae992b9fd3 (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
// -*- MPC -*-
// $Id$

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

project(*Receiver): taoserver {
  avoids += ace_for_tao
  after  += *IDL
  exename = receiver
  Source_Files {
    testC.cpp
    testS.cpp
    receiver.cpp
  }
  IDL_Files {
  }
}

project(*Distributor): rt_server {
  after += *IDL
  exename = distributor
  Source_Files {
    testC.cpp
    testS.cpp
    distributor.cpp
  }
  IDL_Files {
  }
}

project(*Sender): rt_client {
  avoids += ace_for_tao
  exename = sender
  after += *IDL
  includes += ../../tests/RTCORBA/Diffserv

  Source_Files {
    sender.cpp
    testC.cpp
  }
  IDL_Files {
  }
}