blob: ab92c149e34875eaa3ed0feaff7f8052ebfe69b6 (
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
|
//$Id$
project(*idl) : tao_versioning_idl_defaults, install {
custom_only = 1
IDL_Files {
idlflags += -Sci -SS -Gp -Gd -Sorb -GA -Sal \
-Wb,export_macro=TAO_CSD_FW_Export \
-Wb,export_include=tao/CSD_Framework/CSD_FW_Export.h \
-iC tao/CSD_Framework
idlflags -= -Sa -St
CSD_Framework.pidl
}
specific {
install_dir = tao/CSD_Framework
}
}
project(CSD_Framework) : taolib, tao_output, portableserver, install, pi, avoids_corba_e_micro, taoidldefaults {
after += *idl
sharedname = TAO_CSD_Framework
dynamicflags += TAO_CSD_FW_BUILD_DLL
includes += $(TAO_ROOT)/tao
Source_Files {
*.cpp
CSD_FrameworkC.cpp
}
Header_Files {
*.h
CSD_FrameworkC.h
CSD_FrameworkS.h
CSD_FrameworkA.h
}
specific {
install_dir = tao/CSD_Framework
}
}
|