blob: 5eda91f47d343f6df19dad54dd4539d238c22630 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// -*- MPC -*-
// $Id$
project(*Server): taoexe, portableserver, minimum_corba {
IDL_Files {
test.idl
}
Source_Files {
testC.cpp
testS.cpp
test_i.cpp
server.cpp
}
}
project(*Middle): taoexe, portableserver, minimum_corba {
IDL_Files {
test.idl
}
Source_Files {
testC.cpp
testS.cpp
test_i.cpp
middle.cpp
}
}
project(*Client): taoexe, portableserver, minimum_corba {
IDL_Files {
test.idl
}
Source_Files {
testC.cpp
testS.cpp
test_i.cpp
client.cpp
}
}
project(*Ping): taoexe, portableserver, minimum_corba {
IDL_Files {
ping.idl
}
Source_Files {
pingC.cpp
pingS.cpp
ping_i.cpp
ping.cpp
}
}
project(*Pong): taoexe, portableserver, minimum_corba {
IDL_Files {
ping.idl
}
Source_Files {
pingC.cpp
pingS.cpp
ping_i.cpp
pong.cpp
}
}
|