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

// todo : Once MPC is used for everything, we should consider
//        removing the includes += lines below, and updating
//        the source code instead.
project(*server): namingexe, lifecycle {
  avoids   += minimum_corba
  idlflags += -I../../orbsvcs/orbsvcs
  includes += ../../orbsvcs/orbsvcs
  Source_Files {
    server.cpp
    Quoter_i.cpp
  }
}

project(*client): namingexe, lifecycle {
  avoids   += minimum_corba
  idlflags += -I../../orbsvcs/orbsvcs
  includes += ../../orbsvcs/orbsvcs
  Source_Files {
    client.cpp
  }
}

project(*Factory Finder): namingexe, lifecycle {
  avoids   += minimum_corba
  idlflags += -I../../orbsvcs/orbsvcs
  includes += ../../orbsvcs/orbsvcs
  Source_Files {
    Factory_Finder.cpp
    Factory_Finder_i.cpp
  }
}

project(*Generic Factory): namingexe, lifecycle {
  avoids   += minimum_corba
  idlflags += -I../../orbsvcs/orbsvcs
  includes += ../../orbsvcs/orbsvcs
  Source_Files {
    Generic_Factory.cpp
    Generic_Factory_i.cpp
  }
}