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
/
MT_NoUpcall_Client_Leader
/
MT_NoUpcall.mpc
blob
ebb9a8e0683f3e18956caf0579c323bb3a1aac58
1
// -*- MPC -*-
2
3
project(*idl): taoidldefaults {
4
idlflags += -Sp
5
IDL_Files {
6
SharedIntf.idl
7
}
8
custom_only = 1
9
}
10
11
project(*Server): messaging, taoserver, threads {
12
exename = server
13
after += *idl
14
Source_Files {
15
SharedIntf_i.cpp
16
server.cpp
17
worker.cpp
18
chatter.cpp
19
police.cpp
20
}
21
Source_Files {
22
SharedIntfC.cpp
23
SharedIntfS.cpp
24
}
25
IDL_Files {
26
}
27
}
28
29
project(*Client): messaging, taoserver, threads {
30
exename = client
31
after += *idl
32
Source_Files {
33
SharedIntf_i.cpp
34
client.cpp
35
worker.cpp
36
chatter.cpp
37
police.cpp
38
}
39
Source_Files {
40
SharedIntfC.cpp
41
SharedIntfS.cpp
42
}
43
IDL_Files {
44
}
45
}
46