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
/
tests
/
Client_Leaks
/
Client_Leaks.mpc
blob
d1672e74ace21210983e1795461a7a179893e247
1
// -*- MPC -*-
2
project(*idl): taoidldefaults {
3
IDL_Files {
4
Test.idl
5
}
6
custom_only = 1
7
}
8
9
project(*Server): taoserver {
10
after += *idl
11
Source_Files {
12
TestC.cpp
13
TestS.cpp
14
Process_Factory.cpp
15
Startup_Callback.cpp
16
Server_Task.cpp
17
server.cpp
18
}
19
IDL_Files {
20
}
21
}
22
23
project(*Client): taoclient, anytypecode {
24
after += *idl
25
Source_Files {
26
TestC.cpp
27
Client_Task.cpp
28
client.cpp
29
}
30
IDL_Files {
31
}
32
}
33
34
project(*Child): taoserver {
35
exename = child
36
after += *idl
37
after += *Client
38
Source_Files {
39
TestC.cpp
40
TestS.cpp
41
Process.cpp
42
child.cpp
43
}
44
IDL_Files {
45
}
46
}