summaryrefslogtreecommitdiff
path: root/TAO/examples/Quoter/Quoter.mpc
blob: 159c242befc4018145f828510ac2f27e62803aba (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
49
50
51
52
53
54
55
56
57
58
59
// -*- MPC -*-
// $Id$

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

project(*server): namingexe, lifecycle, minimum_corba, utils {
  exename = server
  after += *IDL
  Source_Files {
    server.cpp
    Quoter_i.cpp
    QuoterS.cpp
    QuoterC.cpp
  }
  IDL_Files {
  }
}

project(*client): namingexe, lifecycle, minimum_corba {
  exename = client
  after += *IDL
  Source_Files {
    client.cpp
    QuoterC.cpp
  }
  IDL_Files {
  }
}

project(*Factory Finder): namingexe, lifecycle, minimum_corba, utils {
  exename = Factory_Finder
  after += *IDL
  Source_Files {
    Factory_Finder.cpp
    Factory_Finder_i.cpp
    QuoterS.cpp
    QuoterC.cpp
  }
  IDL_Files {
  }
}

project(*Generic Factory): namingexe, lifecycle, minimum_corba, utils {
  exename = Generic_Factory
  after += *IDL
  Source_Files {
    Generic_Factory.cpp
    Generic_Factory_i.cpp
    QuoterS.cpp
    QuoterC.cpp
  }
  IDL_Files {
  }
}