blob: fbe3fb40a826b816270326ba64cd0162ab3a8450 (
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
|
// $Id$
project(*idl): taoidldefaults {
IDL_Files {
RolyPoly.idl
}
custom_only = 1
}
project(*Server): orbsvcsexe, fault_tolerance, tmcast, pi_server, interceptors {
after += *idl
exename = server
Source_Files {
RolyPolyC.cpp
RolyPolyS.cpp
RolyPoly_i.cpp
ORB_Initializer.cpp
ReplicaController.cpp
CrashPoint.cpp
server.cpp
}
IDL_Files {
}
}
project(*Client): taoclient, fault_tolerance {
after += *idl
Source_Files {
RolyPolyC.cpp
client.cpp
}
IDL_Files {
}
}
|