summaryrefslogtreecommitdiff
path: root/TAO/examples/PluggableUDP/tests/Basic/Basic.mpc
blob: 2f93ff5421ef995fc1d527cc89e69a532231591f (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
// -*- MPC -*-
// $Id$

project(*IDL): taoidldefaults {
  idlflags += -Sp -Sd

  IDL_Files {
    UDP.idl
  }

  custom_only = 1
}

project(*server): taoserver, strategies, avoids_corba_e_micro {
  exename = server
  after += *IDL

  Source_Files {
    server.cpp
    UDP_Client_i.cpp
    UDP_i.cpp
    UDPS.cpp
    UDPC.cpp
  }
  IDL_Files {
  }
}

project(*client): taoserver, strategies {
  exename = client
  after += *IDL

  Source_Files {
    client.cpp
    UDP_Client_i.cpp
    UDP_i.cpp
    UDPS.cpp
    UDPC.cpp
  }
  IDL_Files {
  }
}