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 #2303 from jwillemsen/jwi-803
[ACE_TAO.git]
/
TAO
/
tests
/
DIOP
/
Basic.mpc
blob
99c50e7a9ba79b402c2e5a23becca272c50eb91f
1
// -*- MPC -*-
2
project(*IDL): taoidldefaults {
3
idlflags += -Sp -Sd
4
5
IDL_Files {
6
UDP.idl
7
}
8
9
custom_only = 1
10
}
11
12
project(*server): taoserver, strategies, avoids_corba_e_micro {
13
exename = server
14
after += *IDL
15
16
Source_Files {
17
server.cpp
18
UDP_Client_i.cpp
19
UDP_i.cpp
20
UDPS.cpp
21
UDPC.cpp
22
}
23
IDL_Files {
24
}
25
}
26
27
project(*client): taoserver, strategies {
28
exename = client
29
after += *IDL
30
31
Source_Files {
32
client.cpp
33
UDP_Client_i.cpp
34
UDP_i.cpp
35
UDPS.cpp
36
UDPC.cpp
37
}
38
IDL_Files {
39
}
40
}
41