blob: 46bacb2cf0385db09a329f0304ddaebadc321351 (
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
|
//$Id$
project(*idl) : taolib_with_idl, tao_versioning_idl_defaults, install {
custom_only = 1
IDL_Files {
idlflags += -Wb,export_include=tao/TransportCurrent/Transport_Current_Export.h \
-Wb,export_macro=TAO_Transport_Current_Export \
-iC tao/TransportCurrent -I./TransportCurrent -SS -Sci
idlflags -= -Sa -St
TC.idl
}
specific {
install_dir = tao/TransportCurrent
}
}
project(TC) : taolib_with_idl, tao_output, taoidldefaults, install, interceptors, pi {
after += *idl
requires += transport_current
sharedname = TAO_TC
dynamicflags += TAO_TRANSPORT_CURRENT_BUILD_DLL
Source_Files {
Current_Impl.cpp
Current_Loader.cpp
Current_ORBInitializer_Base.cpp
TCC.cpp
}
Header_Files {
Current_Impl.h
Current_Loader.h
Current_ORBInitializer.h
Current_ORBInitializer_Base.h
Transport_Current.h
Transport_Current_Export.h
TCC.h
TCS.h
}
IDL_Files {
}
Template_Files {
Current_ORBInitializer.cpp
}
specific {
install_dir = tao/TransportCurrent
}
}
|