summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Protocols/Protocols.mpc
blob: f5a235aa7dec59bedef014a84c8677f59d24b94d (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
// -*- 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 {
    receiver.cpp
    testS.cpp
    testC.cpp
  }
  IDL_Files {
  }
}

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

project(*Sender): rt_client {
  avoids += ace_for_tao
  after += *IDL

  specific (automake ) {
    includes += $(srcdir)/../../tests/RTCORBA/Diffserv
  } else {
    includes += ../../tests/RTCORBA/Diffserv
  }

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