summaryrefslogtreecommitdiff
path: root/ACE/TAO/examples/Persistent_Grid/Persistent_Grid.mpc
blob: 29c7283f87ae648f81ed3f76660d67f03729ecca (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 {
    Grid.idl
  }
  custom_only = 1
}

project(*server): taoserver, utils, avoids_corba_e_micro, avoids_ace_for_tao {
  after += *IDL
  Source_Files {
    Grid_i.cpp
    Simple_util.cpp
    server.cpp
    GridS.cpp
    GridC.cpp
  }
  IDL_Files {
  }
}

project(*client): taoexe, utils, portableserver {
  exename = client
  after += *IDL
  Source_Files {
    GridC.cpp
    Simple_util.cpp
    Grid_Client_i.cpp
    client.cpp
  }
  IDL_Files {
  }
}

project(*persistent client): taoexe, utils, portableserver {
  exename = persistent_client
  after += *IDL
  Source_Files {
    GridC.cpp
    Simple_util.cpp
    Persistent_Client_i.cpp
    persistent_client.cpp
  }
  IDL_Files {
  }
}