summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/bank/bank.mpc
blob: df8debec26212e6b1e41d30afa9a2f5e9b85895d (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, anytypecode {
  IDL_Files {
    Bank.idl
  }
  custom_only = 1
}

project(*server): namingexe, iortable, utils {
  exename = server
  after += *IDL
  Source_Files {
    Account_i.cpp
    AccountManager_i.cpp
    ../Simple_util.cpp
    server.cpp
    BankS.cpp
    BankC.cpp
  }
  IDL_Files {
  }
}

project(*client): namingexe, iortable, utils {
  exename = client
  after += *IDL
  Source_Files {
    BankC.cpp
    client.cpp
    ../Simple_util.cpp
    Bank_Client_i.cpp
  }
  IDL_Files {
  }
}