repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
examples
/
Simple
/
bank
/
bank.mpc
blob
8538b3889ca9d63c04e81828442c78f4595b56a7
1
// -*- MPC -*-
2
project(*IDL): taoidldefaults, anytypecode {
3
IDL_Files {
4
Bank.idl
5
}
6
custom_only = 1
7
}
8
9
project(*server): namingexe, iortable, utils, avoids_corba_e_micro {
10
exename = server
11
after += *IDL
12
Source_Files {
13
BankC.cpp
14
BankS.cpp
15
Account_i.cpp
16
AccountManager_i.cpp
17
../Simple_util.cpp
18
server.cpp
19
}
20
IDL_Files {
21
}
22
}
23
24
project(*client): namingexe, iortable, utils {
25
exename = client
26
after += *IDL
27
Source_Files {
28
BankC.cpp
29
client.cpp
30
../Simple_util.cpp
31
Bank_Client_i.cpp
32
}
33
IDL_Files {
34
}
35
}