summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Inherited_Operation/InheritedOp.mpc
blob: 40f1c93b523d3fc400e91fcb3bdce4adf10120c4 (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
// -*- MPC -*-
// $Id$

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

project(*Server): taoserver {
  after += *idl
  
  Source_Files {
    InheritedOpC.cpp
    InheritedOpS.cpp
    InheritedOp_i.cpp
    server.cpp
  }
  
  Header_Files {
    InheritedOpC.h
    InheritedOpS.h
    InheritedOp_i.h
  }
  
  Inline_Files {
    InheritedOpC.inl
  }

  IDL_Files {
  }
}

project(*Client): taoclient {
  after += *idl

  Source_Files {
    InheritedOpC.cpp
    client.cpp
  }

  Header_Files {
    InheritedOpC.h
  }

  Inline_Files {
    InheritedOpC.inl
  }

  IDL_Files {
  }
}