summaryrefslogtreecommitdiff
path: root/TAO/examples/Persistent_Grid/Persistent_Grid.mpc
blob: ee446f09b4c65553aab5b6d43c1c488344cfb83e (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
// -*- MPC -*-
// $Id$

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

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

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

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