summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2560_Regression/Bug_2560_Regression.mpc
blob: 31a88d65d5e29e58418ea198a91dced9d844a368 (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
// -*- MPC -*-
// $Id$

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

project(*client) : taoclient {
  after += *idl
  exename = client
  source_files {
    client.cpp
  }
  source_files {
    QuoterC.cpp
  }
  IDL_Files {
  }
}

project(*server) : taoserver, avoids_corba_e_micro {
  after += *idl
  source_files {
    server.cpp
    Stock_Factory_i.cpp
    Stock_i.cpp
  }
  source_files {
    QuoterC.cpp
    QuoterS.cpp
  }
  IDL_Files {
  }
}