blob: 6940d8238757600bbf285edb2c9e6ae7e26eb623 (
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
|
//$Id$
project(*core_idl) : tao_versioning_idl_defaults, install {
custom_only = 1
IDL_Files {
idlflags += -Sci -SS -Gp -Gd -Sorb -DCORBA3 \
-Wb,export_macro=TAO_Strategies_Export \
-Wb,export_include=tao/Strategies/strategies_export.h \
-iC tao/Strategies
idlflags -= -St
uiop_endpoints.pidl
sciop_endpoints.pidl
COIOP_Endpoints.pidl
}
specific {
install_dir = tao/Strategies
}
}
project(Strategies) : taolib, tao_output, install, pi, anytypecode, core_strategies, taoidldefaults {
after += *core_idl
sharedname = TAO_Strategies
dynamicflags += TAO_STRATEGIES_BUILD_DLL
Source_Files {
*.cpp
uiop_endpointsC.cpp
sciop_endpointsC.cpp
COIOP_EndpointsC.cpp
}
Header_Files {
*.h
uiop_endpointsC.h
sciop_endpointsC.h
COIOP_EndpointsC.h
uiop_endpointsS.h
sciop_endpointsS.h
COIOP_EndpointsS.h
}
specific {
install_dir = tao/Strategies
}
}
|