blob: 8071e8afc4a6b48f8a7b7646a4e306ba49269619 (
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
|
//$Id$
project(*idl) : tao_versioning_idl_defaults {
custom_only = 1
idlflags += -SS -Sci -Sorb \
-Wb,export_macro=TAO_Codeset_Export \
-Wb,export_include=tao/Codeset/codeset_export.h \
-iC tao/Codeset
IDL_Files {
CodeSetContext.pidl
}
}
project(Codeset) : taolib, tao_output, install, taoidldefaults, nolink_codecfactory {
sharedname = TAO_Codeset
after += *idl
dynamicflags += TAO_CODESET_BUILD_DLL
Source_Files {
*.cpp
CodeSetContextC.cpp
}
specific {
install_dir = tao/Codeset
}
}
|