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

project(*Server): taoserver, messaging, minimum_corba, dynamicinterface {
  exename = server
  Source_Files {
    test_i.cpp
    server.cpp
  }
}

project(*Client): taoclient, messaging, minimum_corba, dynamicinterface {
  exename = client
  after += *Server
  Source_Files {
    testC.cpp
    client.cpp
  }
}

project(*Gateway): taoexe, portableserver, messaging, minimum_corba, dynamicinterface {
  exename = gateway
  after += *Client
  Source_Files {
    test_dsi.cpp
    gateway.cpp
  }
}